mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-12-23 08:55:36 +00:00
Remove completed TODOs
This commit is contained in:
parent
390440c8b0
commit
e8398a36ea
|
@ -88,7 +88,6 @@ impl InstallerFramework {
|
||||||
messages: &Sender<InstallMessage>,
|
messages: &Sender<InstallMessage>,
|
||||||
fresh_install: bool,
|
fresh_install: bool,
|
||||||
) -> Result<(), String> {
|
) -> Result<(), String> {
|
||||||
// TODO: Uninstall packages that aren't selected
|
|
||||||
info!(
|
info!(
|
||||||
"Framework: Installing {:?} to {:?}",
|
"Framework: Installing {:?} to {:?}",
|
||||||
items,
|
items,
|
||||||
|
|
|
@ -78,7 +78,6 @@ impl Service for WebService {
|
||||||
fn call(&self, req: Self::Request) -> Self::Future {
|
fn call(&self, req: Self::Request) -> Self::Future {
|
||||||
Box::new(future::ok(match (req.method(), req.path()) {
|
Box::new(future::ok(match (req.method(), req.path()) {
|
||||||
// This endpoint should be usable directly from a <script> tag during loading.
|
// This endpoint should be usable directly from a <script> tag during loading.
|
||||||
// TODO: Handle errors
|
|
||||||
(&Get, "/api/config") => {
|
(&Get, "/api/config") => {
|
||||||
let framework = self
|
let framework = self
|
||||||
.framework
|
.framework
|
||||||
|
@ -99,7 +98,6 @@ impl Service for WebService {
|
||||||
.with_body(file)
|
.with_body(file)
|
||||||
}
|
}
|
||||||
// This endpoint should be usable directly from a <script> tag during loading.
|
// This endpoint should be usable directly from a <script> tag during loading.
|
||||||
// TODO: Handle errors
|
|
||||||
(&Get, "/api/packages") => {
|
(&Get, "/api/packages") => {
|
||||||
let framework = self
|
let framework = self
|
||||||
.framework
|
.framework
|
||||||
|
|
Loading…
Reference in a new issue