Tomo will call the parse functions in Theme and Config

This commit is contained in:
2023-02-03 17:50:45 -05:00
parent 2ff32ca8ea
commit 43fea5c8ba
4 changed files with 71 additions and 4 deletions

View File

@@ -2,8 +2,8 @@ package theme
import "io"
// Parse parses a theme file and returns it as a Theme.
func Parse (io.Reader) (Theme) {
// Parse parses one or more theme files and returns them as a Theme.
func Parse (sources ...io.Reader) (Theme) {
// TODO
return Default { }
}