mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-22 23:45:50 +00:00
11 lines
317 B
Protocol Buffer
11 lines
317 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package xray.proxy.hysteria.account;
|
||
|
|
option csharp_namespace = "Xray.Proxy.Hysteria.Account";
|
||
|
|
option go_package = "github.com/xtls/xray-core/proxy/hysteria/account";
|
||
|
|
option java_package = "com.xray.proxy.hysteria.account";
|
||
|
|
option java_multiple_files = true;
|
||
|
|
|
||
|
|
message Account {
|
||
|
|
string auth = 1;
|
||
|
|
}
|