Skip to content

Commit

Permalink
Change interface{} to any
Browse files Browse the repository at this point in the history
  • Loading branch information
harryzcy committed Apr 27, 2024
1 parent cee300a commit d706aa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/migration/comment.go
Expand Up @@ -24,8 +24,8 @@ type Comment struct {
Updated time.Time
Content string
Reactions []*Reaction
Meta map[string]interface{} `yaml:"meta,omitempty"` // see models/issues/comment.go for fields in Comment struct
OriginalID int64 `yaml:"-"` // ID from the upstream syncing source
Meta map[string]any `yaml:"meta,omitempty"` // see models/issues/comment.go for fields in Comment struct
OriginalID int64 `yaml:"-"` // ID from the upstream syncing source
}

// GetExternalName ExternalUserMigrated interface
Expand Down

0 comments on commit d706aa5

Please sign in to comment.