18 lines
280 B
Go
18 lines
280 B
Go
package internal
|
|
|
|
import (
|
|
"CatsOfMastodonBotGo/internal/auth"
|
|
"CatsOfMastodonBotGo/internal/services"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
|
|
type AppContext struct {
|
|
Db *gorm.DB
|
|
PostService *services.PostService
|
|
Jwt *auth.JwtTokenGenerator
|
|
AdminPassword string
|
|
Instance string
|
|
Tag string
|
|
} |