1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-12 08:23:58 +02:00
go-micro/runtime/local/build/build.go

35 lines
674 B
Go
Raw Normal View History

2019-11-19 18:09:43 +02:00
// Package build builds a micro runtime package
package build
2019-05-31 01:26:34 +02:00
import (
2020-01-19 19:47:27 +02:00
"github.com/micro/go-micro/runtime/local/source"
2019-05-31 01:26:34 +02:00
)
2019-11-19 18:09:43 +02:00
// Builder builds binaries
type Builder interface {
// Build builds a package
Build(*Source) (*Package, error)
// Clean deletes the package
Clean(*Package) error
2019-05-31 01:26:34 +02:00
}
// Source is the source of a build
type Source struct {
// Language is the language of code
Language string
// Location of the source
Repository *source.Repository
}
2019-11-19 18:09:43 +02:00
// Package is micro service package
type Package struct {
2019-05-31 01:26:34 +02:00
// Name of the binary
Name string
// Location of the binary
Path string
// Type of binary
Type string
// Source of the binary
Source *Source
}