This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/config/parse.go

10 lines
173 B
Go
Raw Normal View History

2023-02-02 23:20:02 +00:00
package config
import "io"
// Parse parses a configuration file and returns it as a Config.
func Parse (source io.Reader) (config Config) {
// TODO
return Default { }
}