chore: fix html escaping

This commit is contained in:
Steven
2023-12-17 23:37:00 +08:00
parent 770607f93f
commit 2c4b5d75b3
3 changed files with 6 additions and 18 deletions

View File

@@ -1,9 +1,5 @@
package store
import (
"context"
)
type MigrationHistory struct {
Version string
CreatedTs int64
@@ -15,11 +11,3 @@ type UpsertMigrationHistory struct {
type FindMigrationHistory struct {
}
func (s *Store) FindMigrationHistoryList(ctx context.Context, find *FindMigrationHistory) ([]*MigrationHistory, error) {
return s.driver.FindMigrationHistoryList(ctx, find)
}
func (s *Store) UpsertMigrationHistory(ctx context.Context, upsert *UpsertMigrationHistory) (*MigrationHistory, error) {
return s.driver.UpsertMigrationHistory(ctx, upsert)
}