This commit is contained in:
Jon Lundy 2018-03-15 11:13:59 -06:00
parent dd19874d6a
commit 4179ae85a8
Signed by untrusted user who does not match committer: xuu
GPG Key ID: 346DF999B2530DAE
2 changed files with 5 additions and 2 deletions

View File

@ -32,6 +32,9 @@ ensure:
dep ensure -update
dep status
fmt:
go fmt ./...
run: $(BINARY)
./$(BINARY) -vv serve

View File

@ -27,9 +27,9 @@
package main // import "sour.is/x/paste/cmd/paste"
import (
"sour.is/x/toolbox/httpsrv"
_ "sour.is/x/paste/src/routes"
_ "sour.is/x/paste/src/docs"
_ "sour.is/x/paste/src/routes"
"sour.is/x/toolbox/httpsrv"
)
func main() {