jpictl: add dump command with toml output

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-08-21 19:14:43 +00:00
parent 1ea1ab4ac4
commit 1b9ce9f688
4 changed files with 59 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
package main
// Config describes the repository
type Config struct {
Base string
}
var cfg = &Config{
Base: "./m",
}