mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
29 lines
834 B
Rust
29 lines
834 B
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
pub mod python;
|
|
pub mod rust;
|
|
pub mod typescript;
|
|
|
|
use anki_proto_gen::descriptors_path;
|
|
use anki_proto_gen::get_services;
|
|
use anyhow::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
let descriptors_path = descriptors_path();
|
|
|
|
let pool = rust::write_rust_protos(descriptors_path)?;
|
|
let (_, services) = get_services(&pool);
|
|
|
|
let (services, launcher_services): (Vec<_>, Vec<_>) = services
|
|
.into_iter()
|
|
.partition(|s| !s.name.trim_start_matches("Backend").starts_with("Launcher"));
|
|
|
|
python::write_python_interface(&services)?;
|
|
typescript::write_ts_interface(&services, false)?;
|
|
|
|
// for launcher-gui
|
|
typescript::write_ts_interface(&launcher_services, true)?;
|
|
|
|
Ok(())
|
|
}
|