mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-12 21:50:37 +00:00
- Added boa_engine(for JS runtime) from Rust - Added some method for Element and Document Wrappers - Added some cool views to Player - Refactor
9 lines
135 B
Protocol Buffer
9 lines
135 B
Protocol Buffer
syntax = "proto3";
|
|
package rust_js;
|
|
|
|
message ReadRequest {
|
|
string code_script = 1;
|
|
}
|
|
message ReadResponse {
|
|
string response = 1;
|
|
}
|