mirror of
https://github.com/slint-ui/slint.git
synced 2025-07-13 08:05:19 +00:00
11 lines
371 B
Rust
11 lines
371 B
Rust
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
use pyo3_stub_gen::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
// `stub_info` is a function defined by `define_stub_info_gatherer!` macro.
|
|
let stub = slint_python::stub_info()?;
|
|
stub.generate()?;
|
|
Ok(())
|
|
}
|