mirror of
https://github.com/harness/drone.git
synced 2025-05-04 09:01:33 +08:00

* initial work on create repository * create repository as single method call using client stream * resources handler and files * minor fix for wire dep graph
12 lines
124 B
Go
12 lines
124 B
Go
package resources
|
|
|
|
import "embed"
|
|
|
|
var (
|
|
//go:embed gitignore
|
|
Gitignore embed.FS
|
|
|
|
//go:embed licence
|
|
Licence embed.FS
|
|
)
|