mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-14 10:00:34 +00:00
22 lines
384 B
Protocol Buffer
22 lines
384 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package xray.app.geodata;
|
||
|
|
option csharp_namespace = "Xray.App.Geodata";
|
||
|
|
option go_package = "github.com/xtls/xray-core/app/geodata";
|
||
|
|
option java_package = "com.xray.app.geodata";
|
||
|
|
option java_multiple_files = true;
|
||
|
|
|
||
|
|
message Asset {
|
||
|
|
string url = 1;
|
||
|
|
|
||
|
|
string file = 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
message Config {
|
||
|
|
string cron = 1;
|
||
|
|
|
||
|
|
string outbound = 2;
|
||
|
|
|
||
|
|
repeated Asset assets = 3;
|
||
|
|
}
|