func LoadSchemaFromFile()

in internal/task/load.go [21:29]


func LoadSchemaFromFile(path string) (*Schema, error) {
	f, err := os.Open(path)
	if err != nil {
		return nil, err
	}
	defer f.Close()

	return LoadSchema(f)
}