From 51a40c981ab3a4902fb7dd661b2e4eddb1994c12 Mon Sep 17 00:00:00 2001 From: sanine Date: Sun, 23 Apr 2023 23:04:37 -0500 Subject: begin adding conf tool --- conf/go.mod | 3 +++ conf/main.go | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 conf/go.mod create mode 100644 conf/main.go (limited to 'conf') diff --git a/conf/go.mod b/conf/go.mod new file mode 100644 index 0000000..81b2db5 --- /dev/null +++ b/conf/go.mod @@ -0,0 +1,3 @@ +module sanine.net/phlox/phloxconf + +go 1.20 diff --git a/conf/main.go b/conf/main.go new file mode 100644 index 0000000..13bcf35 --- /dev/null +++ b/conf/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Printf("hello world") +} -- cgit v1.2.1