Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkweon/questionnaire
Interactive CLI builder
https://github.com/kkweon/questionnaire
Last synced: 24 days ago
JSON representation
Interactive CLI builder
- Host: GitHub
- URL: https://github.com/kkweon/questionnaire
- Owner: kkweon
- Created: 2018-12-22T07:18:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-22T07:18:48.000Z (about 6 years ago)
- Last Synced: 2024-10-29T08:05:21.459Z (2 months ago)
- Language: Rust
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Questionnaire [WIP]
Motivated by [inquirer.js](https://github.com/SBoudrias/Inquirer.js/)
## Example
```rust
fn main() {
prompt("what's your name?")
.and_then(|name| {
// do something with name ...
ok(())
})
.wait();
}
```