mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: fix html escaping
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user