summaryrefslogtreecommitdiff
path: root/module.go
blob: 7370452a7362a28566beb6811382b1edf9a0a724 (plain)
1
2
3
4
5
6
package main

// Module is the interface for you to extend what your bar does.
type Module interface {
	GetInfo() (string, error)
}