diff options
author | Emile <hanemile@protonmail.com> | 2019-02-23 21:14:41 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-02-23 21:14:41 +0100 |
commit | 85878612e4fed8109e4eb75d4f0fbc3be88a1cec (patch) | |
tree | 60e4cb94ea0bcc286323bd8da0d82097996bda24 | |
parent | 58539e45e449e3b60cb9fe60084ca64dd4072994 (diff) |
:fix: updated the port number
-rw-r--r-- | src/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.go b/src/main.go index 9e01b74..0808608 100644 --- a/src/main.go +++ b/src/main.go @@ -3,5 +3,5 @@ package main import "net/http" func main() { - panic(http.ListenAndServe(":8081", http.FileServer(http.Dir("./")))) + panic(http.ListenAndServe(":80", http.FileServer(http.Dir("./")))) } |