mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-20 06:20:08 +08:00
14 lines
239 B
Protocol Buffer
14 lines
239 B
Protocol Buffer
syntax = "proto3";
|
|
package timer;
|
|
|
|
message Timer {
|
|
string alert = 1;
|
|
string cron = 2;
|
|
int32 en1month4day5week3hour5min6 = 4;
|
|
int64 selfid = 8;
|
|
string url = 16;
|
|
}
|
|
|
|
message TimersMap {
|
|
map<string, Timer> timers = 1;
|
|
} |