add build string method

This commit is contained in:
Asim Aslam
2020-10-18 09:53:04 +01:00
parent 04b5fc19c2
commit 79834cc131

View File

@@ -7,6 +7,8 @@ type Build interface {
Package(*Source) (*Package, error) Package(*Source) (*Package, error)
// Remove removes the package // Remove removes the package
Remove(*Package) error Remove(*Package) error
// Implementation of build
String() string
} }
// Source is the source of a build // Source is the source of a build