├── .gitignore ├── Cargo.toml ├── README.md ├── aarch64-skyline-switch.json └── src ├── dialog.rs ├── dialog_ok.rs ├── lib.rs ├── session.rs └── templates ├── dialog.html └── dialog_ok.html /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/README.md -------------------------------------------------------------------------------- /aarch64-skyline-switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/aarch64-skyline-switch.json -------------------------------------------------------------------------------- /src/dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/src/dialog.rs -------------------------------------------------------------------------------- /src/dialog_ok.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/src/dialog_ok.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/src/session.rs -------------------------------------------------------------------------------- /src/templates/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/src/templates/dialog.html -------------------------------------------------------------------------------- /src/templates/dialog_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyline-rs/skyline-web/HEAD/src/templates/dialog_ok.html --------------------------------------------------------------------------------