mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 10:56:56 +00:00
14 lines
276 B
Go
14 lines
276 B
Go
package gcp
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (p *Provider) RepositoryAuth(app string) (string, string, error) {
|
|
return "_json_key", string(p.Key), nil
|
|
}
|
|
|
|
func (p *Provider) RepositoryHost(app string) (string, bool, error) {
|
|
return fmt.Sprintf("%s/%s", p.Registry, app), true, nil
|
|
}
|