diff options
| author | ilotterytea <iltsu@alright.party> | 2025-08-01 16:02:59 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-08-01 16:02:59 +0500 |
| commit | 52739525488a799f9f7bde689e520070219acb54 (patch) | |
| tree | faaa29363e3acc1c5aa863b865e9bc8319962813 | |
initial commit
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | LICENSE | 13 | ||||
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | cmd/logs/main.go | 7 | ||||
| -rw-r--r-- | go.mod | 3 |
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 @@ -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!") +} @@ -0,0 +1,3 @@ +module ilotterytea/irclogs + +go 1.22.2 |
