├── .gitignore ├── Cargo.toml ├── README.md ├── README_en.md └── src ├── commands ├── add.rs ├── delete.rs ├── edit.rs ├── info.rs ├── list.rs ├── mod.rs └── search.rs ├── main.rs ├── models.rs └── storage.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/README_en.md -------------------------------------------------------------------------------- /src/commands/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/add.rs -------------------------------------------------------------------------------- /src/commands/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/delete.rs -------------------------------------------------------------------------------- /src/commands/edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/edit.rs -------------------------------------------------------------------------------- /src/commands/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/info.rs -------------------------------------------------------------------------------- /src/commands/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/list.rs -------------------------------------------------------------------------------- /src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/mod.rs -------------------------------------------------------------------------------- /src/commands/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/commands/search.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/models.rs -------------------------------------------------------------------------------- /src/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentomk/senippet/HEAD/src/storage.rs --------------------------------------------------------------------------------