Initial Structure

This commit is contained in:
2024-07-06 16:18:05 +02:00
parent e864024ba1
commit fba7d2c8d4
4 changed files with 13 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
config.toml
View File
+3
View File
@@ -0,0 +1,3 @@
module HwidBot
go 1.22.4
+9
View File
@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main(){
fmt.Println("Initial")
}