Compare commits

...

2 commits
v0.0.1 ... main

Author SHA1 Message Date
cca60461b3
feat: init go files 2025-06-05 20:02:22 +10:00
c4146eef5e
test(example-data): add some example data from target dataset 2025-06-05 19:02:59 +10:00
3 changed files with 13 additions and 0 deletions

BIN
example-data/Example-Data-Guild_966767749118443530.json (Stored with Git LFS) Normal file

Binary file not shown.

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module discord-db-search
go 1.24.3

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}