Files

12 lines
206 B
Go
Raw Permalink Normal View History

2019-04-22 20:46:32 +08:00
package service
import (
"context"
)
// InsertWhite insert white
func (s *Service) InsertWhite(c context.Context, mid int64, typ int) (err error) {
_, err = s.dao.InsertWhitelist(c, mid, typ)
return
}