mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
667cc30291
* feat: remove assets * feat: minio implementation * fix: remove assets from tests * feat: minio implementation * feat: Env vars * fix: sprintf * fix: sprintf * Update internal/eventstore/repository/repository.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: error handling Co-authored-by: Livio Amstutz <livio.a@gmail.com>
9 lines
103 B
Go
9 lines
103 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type BucketInfo struct {
|
|
Name string
|
|
CreationDate time.Time
|
|
}
|