Add boilerplate

This commit is contained in:
Simon Hausmann 2022-12-13 20:18:46 +01:00 committed by Simon Hausmann
parent adcfa9b9ca
commit a2054e7ebd
4 changed files with 43 additions and 1 deletions

9
api/python/lib.rs Normal file
View file

@ -0,0 +1,9 @@
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
use pyo3::prelude::*;
#[pymodule]
fn slint(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
Ok(())
}