mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-29 06:59:46 +08:00
12 lines
368 B
Dart
12 lines
368 B
Dart
/// @author wanghongen
|
|
/// 2023/5/23
|
|
interface class AttributeKeys {
|
|
static const String host = "HOST";
|
|
static const String domain = "DOMAIN";
|
|
static const String uri = "URI";
|
|
static const String request = "REQUEST";
|
|
static const String remote = "REMOTE";
|
|
static const String proxyInfo = "PROXY_INFO";
|
|
static const String processInfo = "PROCESS_INFO";
|
|
}
|