mirror of
https://github.com/rjNemo/auth
synced 2026-06-06 00:16:40 +00:00
Add initial project files: - .air.toml for live reload configuration - .gitignore for temporary and environment files - go.mod with module and Go version - main.go with a simple Hello World program This sets up the foundation for further development.
7 lines
74 B
Go
7 lines
74 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello, World!")
|
|
}
|