Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DBStore ¶
type DBStore struct { Key string `dynamodbav:"key"` Value string `dynamodbav:"value"` Expire float64 `dynamodbav:"expire"` }
DBStore represents DB Model for the store table
type Repository ¶
type Repository interface { SetActiveSignatureMetaData(ctx context.Context, key string, expire int64, value string) error GetActiveSignatureMetaData(ctx context.Context, UserId string) (map[string]interface{}, error) DeleteActiveSignatureMetaData(ctx context.Context, key string) error }
Repository interface
func NewRepository ¶
func NewRepository(awsSession *session.Session, stage string) Repository
NewRepository initiates Store repository instance
Click to show internal directories.
Click to hide internal directories.