Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// +bili:type=service
// Code generated by warden.
syntax = "proto3";
package location.service;
option go_package = "api";
message InfoReply {
string addr = 1;
string country = 2;
string province = 3;
string city = 4;
string isp = 5;
double latitude = 6;
double longitude = 7;
int64 zone_id = 8;
}
message InfoReq {
string addr = 2;
}
service Location {
// Info get ip info.
rpc Info(InfoReq) returns(InfoReply);
}