Files
vaulterm/server/main.go
T
2024-11-07 19:07:41 +00:00

19 lines
182 B
Go

package main
import (
"os"
"rul.sh/vaulterm/app"
)
func main() {
app := app.NewApp()
port := os.Getenv("PORT")
if port == "" {
port = "3000"
}
app.Listen(":" + port)
}