We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd270f2 commit 1a856a9Copy full SHA for 1a856a9
2 files changed
service/api/service.go
@@ -47,5 +47,4 @@ func init() {
47
48
commit.InitCommitWithKeyService[Proxy]("api", string(HistoryProxy))
49
commit.InitCommitWithKeyService[Request]("api", string(HistoryRequest))
50
-
51
}
stores/universally/commit/wtype.go
@@ -22,6 +22,7 @@ type StoreWidthType[H any] struct {
22
func NewCommitWithKey[H any](name, key string) *StoreWidthType[H] {
23
return &StoreWidthType[H]{
24
Store: Store[H]{
25
+ name: name,
26
latestTableName: name + "_latest",
27
commitTableName: name + "_commit",
28
},
0 commit comments