mirror of
https://github.com/ChuckNorrison/LightningTipBot.git
synced 2026-08-13 12:33:14 +02:00
15 lines
209 B
Go
15 lines
209 B
Go
package admin
|
|
|
|
import (
|
|
"github.com/LightningTipBot/LightningTipBot/internal/telegram"
|
|
)
|
|
|
|
type Service struct {
|
|
bot *telegram.TipBot
|
|
}
|
|
|
|
func New(b *telegram.TipBot) Service {
|
|
return Service{
|
|
bot: b,
|
|
}
|
|
}
|