github.com/metux/go-metabuild@v0.0.0-20240118143255-d9ed5ab697f9/spec/main.go (about)

     1  package spec
     2  
     3  import (
     4  	"github.com/metux/go-metabuild/util/specobj"
     5  
     6  	"github.com/metux/go-metabuild/spec/buildconf"
     7  	"github.com/metux/go-metabuild/spec/check"
     8  	"github.com/metux/go-metabuild/spec/distro"
     9  	"github.com/metux/go-metabuild/spec/generate"
    10  	"github.com/metux/go-metabuild/spec/global"
    11  	"github.com/metux/go-metabuild/spec/target"
    12  )
    13  
    14  type (
    15  	Key = specobj.Key
    16  
    17  	Global       = global.Global
    18  	Distro       = distro.Distro
    19  	DistPkg      = distro.DistPkg
    20  	BuildConf    = buildconf.BuildConf
    21  	Generate     = generate.Generate
    22  	Check        = check.Check
    23  	TargetObject = target.TargetObject
    24  )