-
Notifications
You must be signed in to change notification settings - Fork 49
Closed
Labels
Code Cleanup / RefactoringTidying and Making NeatTidying and Making Neat
Description
Parent issue: #141
From PR comment: #152 (comment)
From:
src/apis/
├── handlers.rs
├── middlewares
│ ├── auth.rs
│ └── mod.rs
├── mod.rs
├── resources
│ ├── auth_key.rs
│ ├── mod.rs
│ ├── peer.rs
│ ├── stats.rs
│ └── torrent.rs
├── responses.rs
├── routes.rs
└── server.rs
To:
└── src
├── apis
│ ├── contexts
│ │ ├── auth_key
│ │ │ ├── handlers.rs
│ │ │ ├── mod.rs
│ │ │ ├── resources.rs
│ │ │ ├── responses.rs
│ │ │ └── routes.rs
│ │ ├── mod.rs
│ │ ├── stats
│ │ │ ├── handlers.rs
│ │ │ ├── mod.rs
│ │ │ ├── resources.rs
│ │ │ ├── responses.rs
│ │ │ └── routes.rs
│ │ ├── torrent
│ │ │ ├── handlers.rs
│ │ │ ├── mod.rs
│ │ │ ├── resources.rs
│ │ │ ├── responses.rs
│ │ │ └── routes.rs
│ │ └── whitelist
│ │ ├── handlers.rs
│ │ ├── mod.rs
│ │ ├── resources.rs
│ │ ├── responses.rs
│ │ └── routes.rs
│ ├── middlewares
│ │ ├── auth.rs
│ │ └── mod.rs
│ ├── mod.rs
│ ├── routes.rs
│ └── server.rs
└── mod.rs
mickvandijkeda2ce7
Metadata
Metadata
Assignees
Labels
Code Cleanup / RefactoringTidying and Making NeatTidying and Making Neat
Type
Projects
Status
No status