Skip to content

Commit

Permalink
Initial Go test function.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcarboni committed Feb 7, 2019
1 parent 5b5ad0a commit b7463c7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions functions/hello.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package hello

import (
"fmt"
"net/http"
)

func Hi(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World!")
}

0 comments on commit b7463c7

Please sign in to comment.