summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-04-23 23:04:37 -0500
committersanine <sanine.not@pm.me>2023-04-23 23:04:37 -0500
commit51a40c981ab3a4902fb7dd661b2e4eddb1994c12 (patch)
treeb37853653ee2f49fc27573c1d10604811053d250
parent9e110380b9da31a40d7075a92176f99bbc641990 (diff)
begin adding conf tool
-rw-r--r--.gitignore3
-rw-r--r--conf/go.mod3
-rw-r--r--conf/main.go9
-rw-r--r--phlox/go.mod (renamed from go.mod)2
-rw-r--r--phlox/go.sum (renamed from go.sum)0
-rw-r--r--phlox/main.go (renamed from main.go)0
6 files changed, 15 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index a80fc7e..b5dc760 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-phlox
+phlox/phlox
+conf/phloxconf
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")
+}
diff --git a/go.mod b/phlox/go.mod
index a2f6f57..cd9243f 100644
--- a/go.mod
+++ b/phlox/go.mod
@@ -1,4 +1,4 @@
-module sanine.net/git/phlox
+module sanine.net/git/phlox/phlox
go 1.20
diff --git a/go.sum b/phlox/go.sum
index ed65537..ed65537 100644
--- a/go.sum
+++ b/phlox/go.sum
diff --git a/main.go b/phlox/main.go
index 3516374..3516374 100644
--- a/main.go
+++ b/phlox/main.go