mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-02-22 00:42:03 +00:00
* feat: auto generate example env file * refactor: simplify build paths func and better slice handling * chore: forgot to stage everything * chore: review comments * refactor: remove square brackets because they mess up the syntax highlighting * refactor: use lowercase name to mark dynamic values
12 lines
119 B
Go
12 lines
119 B
Go
package main
|
|
|
|
import (
|
|
"log/slog"
|
|
)
|
|
|
|
func main() {
|
|
slog.Info("generating example env file")
|
|
|
|
generateExampleEnv()
|
|
}
|