Made it so that files for conversion are added to the queue.

This commit is contained in:
2025-06-08 20:42:43 +05:00
parent df8095fb16
commit 29ca392880
6 changed files with 171 additions and 21 deletions

View File

@@ -67,6 +67,7 @@ func NewQueueList() QueueListContract {
return &queueList{
currentKey: 0,
items: map[int]*Queue{},
queue: map[int]int{},
queueListener: map[int]QueueListenerContract{},
}
}