| commit | b6d9eb9ecfffdf7e22e3bd484e0ac872c43e6b6c | [log] [tgz] |
|---|---|---|
| author | iomodo <iomodo@v1.dodo.cloud> | Thu Jul 24 20:54:45 2025 +0400 |
| committer | iomodo <iomodo@v1.dodo.cloud> | Thu Jul 24 20:54:45 2025 +0400 |
| tree | daa05fafa43065055f2a01624146cd180fc60524 | |
| parent | a869b837ae6307cb41a4e03cad3d4285ecb3374e [diff] [blame] |
Add empty server implementation Change-Id: Ieeee07a18d91d0c429a15c5eb0f1f96aed9393c6
diff --git a/server/cmd/main.go b/server/cmd/main.go new file mode 100644 index 0000000..4316dfd --- /dev/null +++ b/server/cmd/main.go
@@ -0,0 +1,13 @@ +package main + +import ( + "os" + + "github.com/iomodo/staff/cmd/commands" +) + +func main() { + if err := commands.Run(os.Args[1:]); err != nil { + os.Exit(1) + } +}