Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zztkm/cliv
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zztkm/cliv
- Owner: zztkm
- Created: 2023-06-25T04:37:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-29T00:29:26.000Z (over 1 year ago)
- Last Synced: 2024-12-20T23:29:46.512Z (14 days ago)
- Language: V
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cli
cli framework for v
## Refs
- flag: https://github.com/vlang/v/tree/master/vlib/flag
## Architecture
```mermaid
flowchart LR
args --> id1[detect subcommand]
id1 --> id2[parsed args]
id2 --> id3[parse flags]
id3 --> id4[run subcommand]```