Skip to content
Snippets Groups Projects
build.go 369 B
// Copyright 2023 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0

package document

type BuildEnvironment struct {
	SourcePath string
	DateFormat string
}

//func Build(env BuildEnvironment) error {
//	dateFormat = env.DateFormat
//
//	definitions, err := getFiles(env.SourcePath)
//	if err != nil {
//		return err
//	}
//	fmt.Println(definitions)
//	return nil
//}