You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/plugin/host/ids.go

20 lines
392 B

package host
import (
"github.com/hashicorp/boundary/internal/db"
"github.com/hashicorp/boundary/internal/errors"
)
// PublicId prefixes for the resources in the plugin package.
const (
PluginPrefix = "pl"
)
func newPluginId() (string, error) {
id, err := db.NewPublicId(PluginPrefix)
if err != nil {
return "", errors.WrapDeprecated(err, "plugin.newPluginId")
}
return id, nil
}