gitee.com/woood2/luca@v1.0.4/internal/sdk/demo.go (about)

     1  package sdk
     2  
     3  import "context"
     4  
     5  //interface
     6  type DemoClient interface {
     7  	CheckToken(ctx context.Context, token string) (ok bool, error error)
     8  	CheckPerm(ctx context.Context, uid int, perm string) (ok bool, error error)
     9  }
    10  
    11  //mocks & adaptors