@ -0,0 +1,2 @@ |
|||||
|
media |
||||
|
webapp |
@ -0,0 +1,57 @@ |
|||||
|
package main |
||||
|
|
||||
|
import "fmt" |
||||
|
|
||||
|
//Color struct, defines the color
|
||||
|
type Color struct{} |
||||
|
|
||||
|
var c Color |
||||
|
|
||||
|
//DarkGray color
|
||||
|
func (c Color) DarkGray(t string) { |
||||
|
fmt.Print("\x1b[30;1m") //dark gray
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
||||
|
|
||||
|
//Red color
|
||||
|
func (c Color) Red(t string) { |
||||
|
fmt.Print("\x1b[31;1m") //red
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
||||
|
|
||||
|
//Green color
|
||||
|
func (c Color) Green(t string) { |
||||
|
fmt.Print("\x1b[32;1m") //green
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
||||
|
|
||||
|
//Yellow color
|
||||
|
func (c Color) Yellow(t string) { |
||||
|
fmt.Print("\x1b[33;1m") //yellow
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
||||
|
|
||||
|
//Blue color
|
||||
|
func (c Color) Blue(t string) { |
||||
|
fmt.Print("\x1b[34;1m") //blue
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
||||
|
|
||||
|
//Purple color
|
||||
|
func (c Color) Purple(t string) { |
||||
|
fmt.Print("\x1b[35;1m") //purple
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
||||
|
|
||||
|
//Cyan color
|
||||
|
func (c Color) Cyan(t string) { |
||||
|
fmt.Print("\x1b[36;1m") //cyan
|
||||
|
fmt.Println(t) |
||||
|
fmt.Print("\x1b[0m") //defaultColor
|
||||
|
} |
@ -0,0 +1,32 @@ |
|||||
|
package main |
||||
|
|
||||
|
/* |
||||
|
type NumberImg struct { |
||||
|
File string `json: "file"` |
||||
|
Text string `json: "text"` |
||||
|
} |
||||
|
|
||||
|
func runServer() { |
||||
|
router := mux.NewRouter().StrictSlash(true) |
||||
|
router.HandleFunc("/", Index).Methods("GET") |
||||
|
router.HandleFunc("/img", ImgToNumber).Methods("POST") |
||||
|
log.Fatal(http.ListenAndServe(":3020", router)) |
||||
|
} |
||||
|
func Index(w http.ResponseWriter, r *http.Request) { |
||||
|
fmt.Println(r.URL.Path) |
||||
|
fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path)) |
||||
|
} |
||||
|
func ImgToNumber(w http.ResponseWriter, r *http.Request) { |
||||
|
fmt.Println(r.URL.Path) |
||||
|
decoder := json.NewDecoder(r.Body) |
||||
|
|
||||
|
var t NumberImg |
||||
|
err := decoder.Decode(&t) |
||||
|
|
||||
|
if err != nil { |
||||
|
panic(err) |
||||
|
} |
||||
|
|
||||
|
fmt.Println(t.Text) |
||||
|
fmt.Fprintf(w, "data") |
||||
|
}*/ |