summaryrefslogtreecommitdiff
path: root/modules/module.go
blob: 69e83372c6bc725d39f7d7498ca78aafbff7ced4 (plain)
1
2
3
4
5
6
package modules

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