mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
https://github.com/XTLS/Xray-core/pull/5992#issuecomment-4320551920 Usage: https://github.com/XTLS/Xray-core/pull/5992#issuecomment-4291168039
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;
|
|
}
|