8b5ae7d7c5
I noticed it when I looked at some files now used in AnkiDroid, wanting to be sure we clearly indicate that we have AGPLv3 code linked in the app
10 lines
255 B
Rust
10 lines
255 B
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
include!("mergeftl.rs");
|
|
|
|
fn main() {
|
|
let args: Vec<_> = std::env::args().collect();
|
|
write_fluent_proto(&args[1]);
|
|
}
|