7 lines
106 B
Go
7 lines
106 B
Go
|
package arn
|
||
|
|
||
|
// Linkable defines an object that can be linked.
|
||
|
type Linkable interface {
|
||
|
Link() string
|
||
|
}
|