Add a prelude module for star imports
This commit is contained in:
parent
4c51e595f0
commit
1ea604a531
|
|
@ -18,8 +18,6 @@ manual = [
|
||||||
"GLib.Variant",
|
"GLib.Variant",
|
||||||
"Gio.Cancellable",
|
"Gio.Cancellable",
|
||||||
"Gio.File",
|
"Gio.File",
|
||||||
|
|
||||||
#"OSTree.RepoCheckoutAtOptions",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[object]]
|
[[object]]
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,12 @@ extern crate gobject_sys as gobject_ffi;
|
||||||
extern crate glib;
|
extern crate glib;
|
||||||
extern crate gio;
|
extern crate gio;
|
||||||
|
|
||||||
pub use glib::Error;
|
use glib::Error;
|
||||||
|
|
||||||
|
// re-exports
|
||||||
mod auto;
|
mod auto;
|
||||||
pub use auto::*;
|
pub use auto::*;
|
||||||
|
|
||||||
|
// public modules
|
||||||
|
pub mod prelude;
|
||||||
|
pub use prelude::*;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
pub use traits::*;
|
||||||
Loading…
Reference in New Issue