mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
18 lines
227 B
Go
18 lines
227 B
Go
package entity
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
type Row struct {
|
|
Id string
|
|
Data string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
func KeyPrefix(tenantId string) string {
|
|
return fmt.Sprintf("user/%s/", tenantId)
|
|
}
|