Move management server to a separate directory (#67)

* Move management server to a separate directory
This commit is contained in:
andpar83
2021-07-24 07:14:29 -07:00
committed by GitHub
parent 83ac774264
commit 9e4aa4f1f1
10 changed files with 109 additions and 22 deletions

12
management/main.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
cmd2 "github.com/wiretrustee/wiretrustee/management/cmd"
"os"
)
func main() {
if err := cmd2.Execute(); err != nil {
os.Exit(1)
}
}