This commit is contained in:
aditya.siregar
2025-07-18 20:10:29 +07:00
parent 1bceae010b
commit 4f5950543e
511 changed files with 24132 additions and 34137 deletions
@@ -0,0 +1,7 @@
package processor
import "context"
type FileClient interface {
UploadFile(ctx context.Context, fileName string, fileContent []byte) (fileUrl string, err error)
}