Versions in this module Expand all Collapse all v0 v0.0.1 Jul 17, 2024 Changes in this version + var ACCESS_KEY = configs.Get().Minio.AccessKey + var BUCKET_NAME = configs.Get().Minio.BucketName + var ENDPOINT = configs.Get().Minio.Endpoint + var SECRET_KEY = configs.Get().Minio.SecretKey + type Service interface + Delete func(ctx context.Context, objectName string) error + PresignedURL func(ctx context.Context, bucketName, objectName string) (string, error) + Upload func(ctx context.Context, file multipart.File, filename string) (string, string, error) + func New() Service