IServiceSink.go 90 B

12345
  1. package service
  2. type IServiceSink interface {
  3. OnNotification(userId int, data string)
  4. }