15 lines
261 B
Go
15 lines
261 B
Go
package entities
|
|
|
|
import (
|
|
"git.1in9.net/raider/wroofauth/internal/entities/user"
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
type Entity interface {
|
|
GetType() string
|
|
GetID() primitive.ObjectID
|
|
}
|
|
|
|
func SetupEntityDatabases() {
|
|
user.SetupCollection()
|
|
}
|