mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
15 lines
367 B
Go
15 lines
367 B
Go
|
package version
|
||
|
|
||
|
import (
|
||
|
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
|
||
|
"go.etcd.io/bbolt"
|
||
|
)
|
||
|
|
||
|
func GetBoltDBPatches() []func(DB *bbolt.DB) error {
|
||
|
return []func(DB *bbolt.DB) error{}
|
||
|
}
|
||
|
|
||
|
func GetDynamoDBPatches() []func(client *dynamodb.Client, tableNames map[string]string) error {
|
||
|
return []func(client *dynamodb.Client, tableNames map[string]string) error{}
|
||
|
}
|