-
Notifications
You must be signed in to change notification settings - Fork 0
tgtv
realitycheck edited this page Jun 26, 2022
·
10 revisions
- CLI: https://github.com/peterbourgon/ff (Stable)
- TG: https://github.com/tucnak/telebot (Trial)
- DB: https://github.com/ent/ent (Trial)
- HTTP: https://github.com/labstack/echo (Stable)
- LOG: https://github.com/rs/zerolog (Trial)
- KV: https://github.com/flower-corp/rosedb (Trial) // kv with pattern scan + zsets
- FSM https://github.com/ryanfaerman/fsm
b.fsm = fsm.Machine{
Subject: b,
Rules: fsm.CreateRuleset(T{"idle", "message"}, T{"message", "command"}, T{"command", "idle"})
}
b.fsmContext = FSMContext{...}