mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 16:01:58 +00:00
9 lines
134 B
Protocol Buffer
9 lines
134 B
Protocol Buffer
syntax = "proto3";
|
|
package boa_js;
|
|
|
|
message ReadRequest {
|
|
string code_script = 1;
|
|
}
|
|
message ReadResponse {
|
|
string response = 1;
|
|
}
|