Browse Source
Add metadata response to index route
feature/add-metadata-endpoint
Fabian Vowie
3 years ago
No known key found for this signature in database
GPG Key ID: C27317C33B27C410
1 changed files with
11 additions and
1 deletions
-
main.go
|
|
@ -1,13 +1,23 @@ |
|
|
|
package main |
|
|
|
|
|
|
|
import ( |
|
|
|
"encoding/json" |
|
|
|
"net/http" |
|
|
|
|
|
|
|
"github.com/gorilla/mux" |
|
|
|
) |
|
|
|
|
|
|
|
const Name string = "Lithium" |
|
|
|
const Version string = "0.1.0" |
|
|
|
|
|
|
|
type Metadata struct { |
|
|
|
Name string |
|
|
|
Version string |
|
|
|
} |
|
|
|
|
|
|
|
func IndexHandler(w http.ResponseWriter, r *http.Request) { |
|
|
|
w.Write([]byte("hello world!")) |
|
|
|
w.Header().Set("Content-Type", "application/json") |
|
|
|
json.NewEncoder(w).Encode(Metadata{Name, Version}) |
|
|
|
} |
|
|
|
|
|
|
|
func main() { |
|
|
|