b2468d3481
* VAULT-15547 First pass at agent/proxy decoupling * VAULT-15547 Fix some imports * VAULT-15547 cases instead of string.Title * VAULT-15547 changelog * VAULT-15547 Fix some imports * VAULT-15547 some more dependency updates * VAULT-15547 More dependency paths * VAULT-15547 godocs for tests * VAULT-15547 godocs for tests * VAULT-15547 test package updates * VAULT-15547 test packages * VAULT-15547 add proxy to test packages * VAULT-15547 gitignore * VAULT-15547 address comments * VAULT-15547 Some typos and small fixes
16 lines
478 B
Go
16 lines
478 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package consts
|
|
|
|
// ProxyPathCacheClear is the path that the proxy will use as its cache-clear
|
|
// endpoint.
|
|
const ProxyPathCacheClear = "/proxy/v1/cache-clear"
|
|
|
|
// ProxyPathMetrics is the path the proxy will use to expose its internal
|
|
// metrics.
|
|
const ProxyPathMetrics = "/proxy/v1/metrics"
|
|
|
|
// ProxyPathQuit is the path that the proxy will use to trigger stopping it.
|
|
const ProxyPathQuit = "/proxy/v1/quit"
|