aim-oscar-server/services/service.go

13 lines
190 B
Go
Raw Permalink Normal View History

2021-12-24 12:43:40 -05:00
package services
import (
"aim-oscar/oscar"
"context"
"github.com/uptrace/bun"
)
type Service interface {
2021-12-19 01:14:25 -05:00
HandleSNAC(context.Context, *bun.DB, *oscar.SNAC) (context.Context, error)
}