Initial Structure

This commit is contained in:
Joren 2024-07-06 16:18:05 +02:00
parent e864024ba1
commit fba7d2c8d4
Signed by: Joren
GPG Key ID: 280E33DFBC0F1B55
4 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
config.toml

0
config.toml.example Normal file
View File

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module HwidBot
go 1.22.4

9
main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main(){
fmt.Println("Initial")
}