├── .docs └── demo-testroute.gif ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── data ├── routes.http └── user.json └── src ├── app_requirements.rs ├── main.rs ├── prompts ├── file_completion.rs └── mod.rs └── tokenizer ├── ast.rs ├── mod.rs └── tokens.rs /.docs/demo-testroute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/.docs/demo-testroute.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/README.md -------------------------------------------------------------------------------- /data/routes.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/data/routes.http -------------------------------------------------------------------------------- /data/user.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Foo" 3 | } 4 | -------------------------------------------------------------------------------- /src/app_requirements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/src/app_requirements.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/prompts/file_completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/src/prompts/file_completion.rs -------------------------------------------------------------------------------- /src/prompts/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod file_completion; 2 | -------------------------------------------------------------------------------- /src/tokenizer/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/src/tokenizer/ast.rs -------------------------------------------------------------------------------- /src/tokenizer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/src/tokenizer/mod.rs -------------------------------------------------------------------------------- /src/tokenizer/tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherryramatisdev/testroute/HEAD/src/tokenizer/tokens.rs --------------------------------------------------------------------------------