diff --git a/resource/resource.go b/resource/resource.go index bb84aed79..bea53856e 100644 --- a/resource/resource.go +++ b/resource/resource.go @@ -35,11 +35,15 @@ var ( const DefaultResourceType = "unknown" +// Source is an internal template and not meant for use in the templates. It +// may change without notice. type Source interface { AbsSourceFilename() string Publish() error } +// Cloner is an internal template and not meant for use in the templates. It +// may change without notice. type Cloner interface { WithNewBase(base string) Resource }