├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── config └── riker.toml ├── src ├── ask.rs ├── lib.rs └── transform.rs └── tests ├── ask.rs └── transform.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/README.md -------------------------------------------------------------------------------- /config/riker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/config/riker.toml -------------------------------------------------------------------------------- /src/ask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/src/ask.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/src/transform.rs -------------------------------------------------------------------------------- /tests/ask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/tests/ask.rs -------------------------------------------------------------------------------- /tests/transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riker-rs/riker-patterns/HEAD/tests/transform.rs --------------------------------------------------------------------------------