source: code/trunk/cli/txt.ml@ 47

Last change on this file since 47 was 47, checked in by yakumo.izuru, 22 months ago

Izuru Yakumo, The Violet Hermit shall be taking over Logarion's development, from now on

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 577 bytes
Line 
1let version = "9333d0e-dirty"
2
3open Cmdliner
4let default_cmd =
5 let doc = "Discover, collect & exchange texts" in
6 let man = [ `S "CONTACT"; `P "<mailto:logarion@lists.tildeverse.org?subject=Logarion>" ] in
7 Term.(ret (const (`Help (`Pager, None)))), Term.info "txt" ~version ~doc ~man
8
9let () = match Term.eval_choice default_cmd [
10 Authors.term;
11 Convert.term;
12 Edit.term;
13 File.term; File.unfile_term;
14 Index.term;
15 Last.term;
16 Listing.term;
17 New.term;
18 Peers.term;
19 Publish.term;
20 Pull.term;
21 Read.term;
22 Recent.term;
23 Topics.term;
24 ] with `Error _ -> exit 1 | _ -> exit 0
Note: See TracBrowser for help on using the repository browser.