(total int64)
| 367 | } |
| 368 | |
| 369 | func newProgressBar(total int64) *progressBar { |
| 370 | return &progressBar{ |
| 371 | total: total, |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | func GetTaskList(db *sql.DB, page int, pageSize int) ([]TaskInDB, error) { |
| 376 | tasks := []TaskInDB{} |
no outgoing calls
no test coverage detected