13 lines
259 B
Go
13 lines
259 B
Go
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")
|
|
}
|