diff options
| author | Fenrir <[email protected]> | 2018-04-29 14:09:34 -0600 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2018-04-29 14:09:34 -0600 |
| commit | c490600f137775f5114b987d9aaef54ee319bd98 (patch) | |
| tree | 0ee20cee20423e3a64999a8162317eda4073e74e | |
| parent | make `get_bytes` a safe function (diff) | |
| download | archived-ctru-rs-c490600f137775f5114b987d9aaef54ee319bd98.tar.xz archived-ctru-rs-c490600f137775f5114b987d9aaef54ee319bd98.zip | |
rename `applet` module to `applets`
| -rw-r--r-- | ctru-rs/src/applets/mod.rs (renamed from ctru-rs/src/applet/mod.rs) | 0 | ||||
| -rw-r--r-- | ctru-rs/src/applets/swkbd.rs (renamed from ctru-rs/src/applet/swkbd.rs) | 0 | ||||
| -rw-r--r-- | ctru-rs/src/lib.rs | 2 |
3 files changed, 1 insertions, 1 deletions
diff --git a/ctru-rs/src/applet/mod.rs b/ctru-rs/src/applets/mod.rs index 73469a3..73469a3 100644 --- a/ctru-rs/src/applet/mod.rs +++ b/ctru-rs/src/applets/mod.rs diff --git a/ctru-rs/src/applet/swkbd.rs b/ctru-rs/src/applets/swkbd.rs index 7f3dcfd..7f3dcfd 100644 --- a/ctru-rs/src/applet/swkbd.rs +++ b/ctru-rs/src/applets/swkbd.rs diff --git a/ctru-rs/src/lib.rs b/ctru-rs/src/lib.rs index c98ca65..c3caf62 100644 --- a/ctru-rs/src/lib.rs +++ b/ctru-rs/src/lib.rs @@ -11,7 +11,7 @@ extern crate widestring; extern crate ctru_sys as libctru; -pub mod applet; +pub mod applets; pub mod console; pub mod error; pub mod srv; |