drone/resources/embed.go
Enver Bisevac 1cf07b6417 initial work on create repository (#27)
* initial work on create repository

* create repository as single method call using client stream

* resources handler and files

* minor fix for wire dep graph
2022-10-11 17:48:04 +02:00

12 lines
124 B
Go

package resources
import "embed"
var (
//go:embed gitignore
Gitignore embed.FS
//go:embed licence
Licence embed.FS
)