socket_patch_core/constants.rs
1/// Default path for the patch manifest file relative to the project root.
2pub const DEFAULT_PATCH_MANIFEST_PATH: &str = ".socket/manifest.json";
3
4/// Default public patch API URL for free patches (no auth required).
5pub const DEFAULT_PATCH_API_PROXY_URL: &str = "https://patches-api.socket.dev";
6
7/// Default Socket API URL for authenticated access.
8pub const DEFAULT_SOCKET_API_URL: &str = "https://api.socket.dev";
9
10/// User-Agent header value for API requests.
11pub const USER_AGENT: &str = "SocketPatchCLI/1.0";