Skip to content
Snippets Groups Projects
Select Git revision
  • 4132c09d965d94d2dfe7c7203a093162bf41fd77
  • master default protected
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • v1.1.0
8 results

definition.go

Blame
  • 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
    //}