Zaktualizuj 'serwer.go'
This commit is contained in:
parent
7c98822f3b
commit
f58a6c0bc0
13
serwer.go
13
serwer.go
@ -1,5 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"image"
|
"image"
|
||||||
@ -15,15 +16,19 @@ whiteIndex = 0 // pierwszy kolor w zmiennej palette
|
|||||||
blackIndex = 1 // następny kolor w zmiennej palette
|
blackIndex = 1 // następny kolor w zmiennej palette
|
||||||
)
|
)
|
||||||
func main() {
|
func main() {
|
||||||
http.HandleFunc("/", handler)
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
fmt.Fprintln(w, "Witam na mojej stronie GO!\nAby przetestować jedną z opcji skorzystaj z opisu:\n")
|
||||||
|
// fmt.Fprintln(w, "/gif - wyświetla anomiwanego gifa "lissajous")
|
||||||
|
// fmt.Fprintln(w, "/info - wyświetla informacje o autorze)
|
||||||
|
// fmt.Fprintln(w, "/time - wyświetla informacje aktualnym czasie)
|
||||||
|
// fmt.Fprintln(w, "/time - wyświetla informacje o języku go)
|
||||||
|
})
|
||||||
http.HandleFunc("/gif", func(w http.ResponseWriter, r *http.Request) {
|
http.HandleFunc("/gif", func(w http.ResponseWriter, r *http.Request) {
|
||||||
lissajous(w)
|
lissajous(w)
|
||||||
})
|
})
|
||||||
|
|
||||||
log.Fatal(http.ListenAndServe("localhost:8000", nil))
|
log.Fatal(http.ListenAndServe("localhost:8000", nil))
|
||||||
}
|
}
|
||||||
func handler(w http.ResponseWriter, r *http.Request) {
|
|
||||||
fmt.Fprintf(w, "URL.Path = %q\n", r.URL.Path)
|
|
||||||
}
|
|
||||||
func lissajous(out io.Writer) {
|
func lissajous(out io.Writer) {
|
||||||
const (
|
const (
|
||||||
cycles = 5 // liczba pełnych obiegów oscylatora x
|
cycles = 5 // liczba pełnych obiegów oscylatora x
|
||||||
|
Loading…
Reference in New Issue
Block a user