refactor(service): remove legacy routing and unused code

Removes the legacy route table maintenance logic from the sync service
that populated deprecated Redis keys. Additionally, deletes the unused
TokenService and KeyDTO files to reduce technical debt.
This commit is contained in:
zenfun
2026-01-04 12:07:37 +08:00
parent 4b22b759e7
commit 05cba292d4
3 changed files with 0 additions and 101 deletions

View File

@@ -1,10 +0,0 @@
package dto
// KeyDTO defines payload for key creation/update.
type KeyDTO struct {
Group string `json:"group"`
KeySecret string `json:"key_secret"`
Balance float64 `json:"balance"`
Status string `json:"status"`
Weight int `json:"weight"`
}