server.go 235 B

123456789101112
  1. package main
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. // CountYestodayArts
  7. func (a *App) Login(username,password string) map[string]interface{}{
  8. fmt.Println(username,password)
  9. time.Sleep(2*time.Second)
  10. return map[string]interface{}{"error": 1}
  11. }