environment.go 192 B

12345678910
  1. package remote_manager
  2. import (
  3. "strings"
  4. )
  5. func (r *RemotePluginRuntime) Identity() (string, error) {
  6. return strings.Join([]string{r.Configuration().Identity(), r.tenant_id}, ":"), nil
  7. }