mirror of
https://github.com/amigan/aim-oscar-server.git
synced 2024-11-21 20:19:47 -05:00
7 lines
118 B
Go
7 lines
118 B
Go
package main
|
|
|
|
import "github.com/uptrace/bun"
|
|
|
|
type Service interface {
|
|
HandleSNAC(*bun.DB, *Session, *SNAC) error
|
|
}
|