clear
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Владимир Фёдоров 2023-04-08 19:24:03 +07:00
parent f1f2ae721b
commit 12ffc3461f
2 changed files with 0 additions and 21 deletions

View File

@ -1,11 +1,8 @@
package main
import (
"fmt"
"log"
"net/http"
"valera/internal/calories"
"valera/internal/commands"
"valera/internal/config"
"valera/internal/db"
"valera/internal/states"
@ -85,10 +82,5 @@ func main() {
log.Println(err)
}
}
switch userInfoDTO.GetStatus() {
case db.UserStateEat:
}
}
}

View File

@ -1,13 +0,0 @@
package commands
type Command string
const (
Start = Command("/start")
Help = Command("/help")
Ping = Command("/ping")
Go = Command("/go")
Stat = Command("/stat")
Eat = Command("/eat")
Pause = Command("/pause")
)