1
0
Fork 0
mirror of https://github.com/Luzifer/mondash.git synced 2024-11-09 16:10:01 +00:00

Fix: Config is required to determine bucket name

This commit is contained in:
Knut Ahlers 2015-07-06 23:53:12 +02:00
parent 72d90f5fbe
commit ae3e597e56

View file

@ -21,6 +21,7 @@ func NewS3Storage(cfg *config.Config) *S3Storage {
s3connection := s3.New(&aws.Config{})
return &S3Storage{
s3connection: s3connection,
cfg: cfg,
}
}