コード例 #1
0
ファイル: cli.go プロジェクト: Fepelus/clockgsl
func main() {
	fmt.Print(clockgsl.GetAllAsString())
}
コード例 #2
0
ファイル: server.go プロジェクト: Fepelus/clockgsl
func stringhandler(w http.ResponseWriter, r *http.Request) {
	w.Header().Set("Content-Type", "text/plain; charset=utf-8")
	fmt.Fprintf(w, clockgsl.GetAllAsString())
}