Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zztkm/cliv


https://github.com/zztkm/cliv

Last synced: 10 days ago
JSON representation

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]

```