Implement OTS-CLI utility (#117)

This commit is contained in:
Knut Ahlers 2023-10-04 22:27:14 +02:00 committed by GitHub
parent c5124731f5
commit 546481dcfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 861 additions and 70 deletions

9
cmd/ots-cli/main.go Normal file
View file

@ -0,0 +1,9 @@
package main
import "os"
func main() {
if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
}