types.go 84 B

12345
  1. package oscar
  2. type CookieCracker interface {
  3. Crack(data []byte) ([]byte, error)
  4. }