25 lines
480 B
Go
25 lines
480 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
// Zrobione ostatnio:
|
|
// Naprawa insert, Column info,
|
|
// Zrobione:
|
|
// Podstawowy serwer; Podstawowe struktury modeli; niezbędne enumy; prosta refraktoryzacja;
|
|
// Utworzenie połączenia z bazą danych; Funkcje modeli; łączenie z bazą danych;
|
|
func main() {
|
|
router := newRouter()
|
|
testConnection()
|
|
log.Fatal(http.ListenAndServe(":8080", router))
|
|
|
|
}
|
|
|
|
func getXxx() patient {
|
|
pat := patient{}
|
|
|
|
return pat
|
|
}
|