Usuń 'plik.go'

This commit is contained in:
Mikołaj Wojdyło 2018-11-21 19:39:21 +00:00
parent 8606fdf632
commit e490e96259
1 changed files with 0 additions and 17 deletions

17
plik.go
View File

@ -1,17 +0,0 @@
package main
import (
"fmt"
"net/http"
)
func hello(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "to dziala :)")
}
func main(){
http.HandleFunc("/", hello)
http.ListenAndServe(":8080", nil)
}