chore(todo): remove completed TODOs

This commit is contained in:
yusing
2025-08-17 17:10:21 +08:00
parent 353f818b41
commit 35b0dcb418
2 changed files with 2 additions and 3 deletions

View File

@@ -10,8 +10,8 @@ import (
type OverrideConfig struct {
ItemOverrides map[string]*ItemConfig `json:"item_overrides"`
DisplayOrder map[string]int `json:"display_order"` // TODO: implement this
CategoryOrder map[string]int `json:"category_order"` // TODO: implement this
DisplayOrder map[string]int `json:"display_order"`
CategoryOrder map[string]int `json:"category_order"`
ItemVisibility map[string]bool `json:"item_visibility"`
mu sync.RWMutex
}

View File

@@ -96,7 +96,6 @@ const reqTimeout = 3 * time.Second
// prevents dependencies from being stopped automatically.
const neverTick = time.Duration(1<<63 - 1)
// TODO: fix stream type.
func NewWatcher(parent task.Parent, r types.Route, cfg *types.IdlewatcherConfig) (*Watcher, error) {
key := cfg.Key()