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
2023-02-03 00:57:18 -05:00

10 lines
148 B
Go

package theme
import "io"
// Parse parses a theme file and returns it as a Theme.
func Parse (io.Reader) (Theme) {
// TODO
return Default { }
}