feat: with initial cmd and server

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-07 15:14:24 +02:00
commit 742457ad42
4 changed files with 312 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"log"
"git.front.kjuulh.io/kjuulh/contractor/cmd/contractor"
)
func main() {
if err := contractor.RootCmd().Execute(); err != nil {
log.Fatal(err)
}
}