wroofauth/internal/entities/entity.go
2023-10-19 11:44:03 +00:00

8 lines
143 B
Go

package entities
import "go.mongodb.org/mongo-driver/bson/primitive"
type Entity interface {
GetType() string
GetID() primitive.ObjectID
}