mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-02-22 00:42:03 +00:00
12 lines
119 B
Go
12 lines
119 B
Go
package main
|
|
|
|
import (
|
|
"log/slog"
|
|
)
|
|
|
|
func main() {
|
|
slog.Info("generating example env file")
|
|
|
|
generateExampleEnv()
|
|
}
|