Source declares the minimal interface to describe the source of a fetched opkssh policy (i.e. where the policy is retrieved from)
| 140 | // Source declares the minimal interface to describe the source of a fetched |
| 141 | // opkssh policy (i.e. where the policy is retrieved from) |
| 142 | type Source interface { |
| 143 | // Source returns a string describing the source of an opkssh policy. The |
| 144 | // returned value is empty if there is no information about its source |
| 145 | Source() string |
| 146 | } |
| 147 | |
| 148 | var _ Source = &EmptySource{} |
| 149 |
no outgoing calls
no test coverage detected