mirror of
https://github.com/documize/community.git
synced 2025-07-25 08:09:43 +02:00
12 lines
253 B
Go
12 lines
253 B
Go
package account
|
|
|
|
import (
|
|
"github.com/documize/community/core/env"
|
|
"github.com/documize/community/domain"
|
|
)
|
|
|
|
// Handler contains the runtime information such as logging and database.
|
|
type Handler struct {
|
|
Runtime *env.Runtime
|
|
Store domain.Store
|
|
}
|