mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-03 07:18:12 +08:00
7 lines
100 B
Go
7 lines
100 B
Go
package namesys
|
|
|
|
type Resolver interface {
|
|
Resolve(string) (string, error)
|
|
Matches(string) bool
|
|
}
|