Files
VLADIMIR ada1a97999
continuous-integration/drone/push Build is passing
add last_time
2023-04-09 14:47:38 +07:00

12 lines
201 B
Go

package states
import (
"net/http"
"valera/internal/db"
)
type BotState interface {
Do(text string, chatInfo *db.ChatInfo) error
GetHandler() (string, func(http.ResponseWriter, *http.Request))
}