Added basic directories and a simple main.go

This commit is contained in:
Andrew Scott 2022-07-07 16:55:43 -04:00
parent c97ef988be
commit 089c69c642
Signed by: a
GPG key ID: 3EB62D0BBB8DB381
2 changed files with 14 additions and 0 deletions

11
cmd/service/main.go Normal file
View file

@ -0,0 +1,11 @@
package main
import "flag"
func main() {
var mode string
flag.StringVar(&mode, "mode", "client", "Specify \"client\" or \"server\" mode")
flag.Parse()
}

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module codeberg.org/andcscott/OpenWeatherMap-gRPC-API
go 1.18