mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
7 lines
89 B
Go
7 lines
89 B
Go
package interfaces
|
|
|
|
// Documenter interface
|
|
type Documenter interface {
|
|
Docs() string
|
|
}
|