mirror of
https://github.com/documize/community.git
synced 2025-07-30 02:29:43 +02:00
13 lines
253 B
Go
13 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
|
||
|
}
|