netsafe.go 366 B

123456789101112131415161718
  1. package archive
  2. import (
  3. "context"
  4. )
  5. // AddNetSafeMd5 fn
  6. func (s *Service) AddNetSafeMd5(c context.Context, nid int64, md5 string) (err error) {
  7. err = s.arc.AddNetSafeMd5(c, nid, md5)
  8. go s.NotifyNetSafe(c, nid)
  9. return
  10. }
  11. // NotifyNetSafe fn
  12. func (s *Service) NotifyNetSafe(c context.Context, nid int64) (err error) {
  13. _ = s.arc.NotifyNetSafe(c, nid)
  14. return
  15. }