diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5761abc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.o diff --git a/README.md b/README.md index 125ea23..3693337 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # OpenPrice - +WIP diff --git a/main.go b/main.go new file mode 100644 index 0000000..3ff70fd --- /dev/null +++ b/main.go @@ -0,0 +1,14 @@ +package main + +import ( + "fmt" + "net/http" +) + +func main() { + http.HandleFunc("/test", func (w http.ResponseWriter, r *http.Request) { + fmt.Fprintf(w, "test") + }) + + http.ListenAndServe(":8080", nil) +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..d476aff --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +all: + go run main.go