ContainerImage.Pinniped/cmd/placeholder-name/main.go
Matt Moyer 82f89c501a Fix initial lint violations.
Signed-off-by: Matt Moyer <moyerm@vmware.com>
2020-07-07 14:55:50 -05:00

18 lines
246 B
Go

/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
package main
import (
"log"
"net/http"
"github.com/suzerain-io/placeholder-name/pkg/handlers"
)
func main() {
log.Fatal(http.ListenAndServe(":8080", handlers.New()))
}