diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-05 23:07:26 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-05 23:07:26 +0200 |
| commit | 4d577650f737daaeb477bbbd5ae2bad4f1121c38 (patch) | |
| tree | ac973541e0a2d7751af4ece5f7f639e739f81fcc /src/searchresult.rs | |
first sketch of indexer
Diffstat (limited to 'src/searchresult.rs')
| -rw-r--r-- | src/searchresult.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/searchresult.rs b/src/searchresult.rs new file mode 100644 index 0000000..6a0dd30 --- /dev/null +++ b/src/searchresult.rs @@ -0,0 +1,5 @@ + +pub struct SearchResult { + pub priority : u64, + pub path : String +} |