Transcode Task Handling

This commit is contained in:
Samuel Lorch 2024-06-22 21:12:52 +02:00
parent fea955fb79
commit 13ea1cb755
6 changed files with 164 additions and 20 deletions

13
task/upload.go Normal file
View file

@ -0,0 +1,13 @@
package task
import (
"context"
"fmt"
"log/slog"
"git.lastassault.de/speatzle/morffix/types"
)
func uploadFile(ctx context.Context, l *slog.Logger, address string, path string, t *types.Task) error {
return fmt.Errorf("File Upload not Implemented")
}