fix: make macros internal

pull/12/head
paring 2022-11-03 18:54:24 +09:00
parent d4007eb72e
commit b3a6339e1a
Signed by: pikokr
GPG Key ID: DB839724AD14EC9F
1 changed files with 1 additions and 1 deletions

View File

@ -6,9 +6,9 @@ extern crate cancellation;
#[cfg(target_os = "windows")]
extern crate winsafe;
pub(crate) mod macros;
mod platforms;
pub mod types;
pub mod macros;
pub fn run(callback: fn(Event)) -> Result<(), Error> {
platforms::run(callback)