10 lines
169 B
Go
10 lines
169 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/tech/sendico/pkg/model"
|
|
)
|
|
|
|
type TelegramReactionHandler = func(context.Context, *model.TelegramReactionRequest) error
|