feat: s3 download

This commit is contained in:
Anatoly Antonov 2025-10-20 19:10:07 +09:00
parent a850615e1f
commit c4f355a32e
15 changed files with 590 additions and 109 deletions

View file

@ -8,13 +8,11 @@ import (
)
type Service struct {
cfg *Config
grib Grib
}
func New(cfg *Config, gribService Grib) (*Service, error) {
func New(gribService Grib) (*Service, error) {
svc := &Service{
cfg: cfg,
grib: gribService,
}