code.dwrz.net

Go monorepo.
Log | Files | Refs

interfaces.go (213B)


      1 package sdk
      2 
      3 // Invalidator provides access to a type's invalidate method to make it
      4 // invalidate it cache.
      5 //
      6 // e.g aws.SafeCredentialsProvider's Invalidate method.
      7 type Invalidator interface {
      8 	Invalidate()
      9 }