mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-06 02:46:40 +00:00
14 lines
209 B
Go
14 lines
209 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/rjNemo/go-pass-gen/api"
|
|
)
|
|
|
|
const port = ":8080"
|
|
|
|
func main() {
|
|
log.Printf("Start passgen server on http://localhost%s\n", port)
|
|
log.Fatal(api.New().Start(port))
|
|
}
|