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/theme/parse.go

10 lines
148 B
Go
Raw Normal View History

2023-02-03 05:57:18 +00:00
package theme
import "io"
// Parse parses a theme file and returns it as a Theme.
func Parse (io.Reader) (Theme) {
// TODO
return Default { }
}