We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7145d46 commit 1c8223fCopy full SHA for 1c8223f
.gitignore
@@ -10,3 +10,7 @@
10
11
# Output of the go coverage tool, specifically when used with LiteIDE
12
*.out
13
+
14
15
+# buildfiles
16
+bin/**
Procfile
@@ -1 +1 @@
1
-web: bin/go-webserver
+web: go-webserver
go.mod
@@ -1,4 +1,4 @@
-module github.com/emilhein/go-aws-webserver
+module github.com/go-aws-webserver
2
3
go 1.13
4
main.go
@@ -1,7 +1,7 @@
package main
import (
- "github.com/emilhein/go-aws-webserver/webserver"
+ "github.com/go-aws-webserver/webserver"
5
)
6
7
func main() {
0 commit comments