mirror of
https://github.com/aykhans/dodo.git
synced 2025-09-05 10:43:37 +00:00
8 lines
121 B
Go
8 lines
121 B
Go
package parser
|
|
|
|
import "github.com/aykhans/dodo/pkg/config"
|
|
|
|
type IParser interface {
|
|
Parse() (*config.Config, error)
|
|
}
|