Skip to content
Snippets Groups Projects
Commit b621a304 authored by Kenneth Tran's avatar Kenneth Tran
Browse files

Delete main.go

parent 8a11a7cc
Branches
No related tags found
No related merge requests found
package main
import (
"net/http"
A "oblig2/packs"
"log"
"os"
)
func main(){
port := os.Getenv("PORT")
port = "8080"
if port == "" {
log.Fatal("PORT must be set")
}
A.GetCommits()
log.Fatal(http.ListenAndServe(":"+port, nil))
// B.GetIssues()
// C.GetLanguages()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment