feat(provider): add repositories data-source

This commit is contained in:
Julien Dessaux 2025-05-19 21:48:20 +02:00
parent 2063f5ffef
commit f04d7b341d
Signed by: adyxax
GPG key ID: F92E51B86E07177E
10 changed files with 1171 additions and 173 deletions

View file

@ -0,0 +1,7 @@
package client
type Permission struct {
Admin bool `json:"admin"`
Pull bool `json:"pull"`
Push bool `json:"push"`
}