Initial commit.

This commit is contained in:
2020-02-06 15:09:25 +05:00
commit a7bf1f29ba
22 changed files with 1049 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package outputinterface
import (
// local
"go.dev.pztrn.name/glp/structs"
)
// Interface is a generic output writer interface.
type Interface interface {
Write(deps []*structs.Dependency, outFile string)
}