From 52739525488a799f9f7bde689e520070219acb54 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Fri, 1 Aug 2025 16:02:59 +0500 Subject: initial commit --- .gitignore | 2 ++ LICENSE | 13 +++++++++++++ README.md | 1 + cmd/logs/main.go | 7 +++++++ go.mod | 3 +++ 5 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 cmd/logs/main.go create mode 100644 go.mod 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 + +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 -- cgit v1.2.3