summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--LICENSE13
-rw-r--r--README.md1
-rw-r--r--cmd/logs/main.go7
-rw-r--r--go.mod3
5 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..18f1683
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.ini
+bin/ \ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e57355d
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,13 @@
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+Copyright (C) 2025 ilotterytea <iltsu@alright.party>
+
+Everyone is permitted to copy and distribute verbatim or modified
+copies of this license document, and changing it is allowed as long
+as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ca556e3
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+# irclogs \ No newline at end of file
diff --git a/cmd/logs/main.go b/cmd/logs/main.go
new file mode 100644
index 0000000..eb6a1b5
--- /dev/null
+++ b/cmd/logs/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+ fmt.Println("hello, world!")
+}
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..0ce8f94
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module ilotterytea/irclogs
+
+go 1.22.2