15 lines
192 B
Go
15 lines
192 B
Go
package internal
|
|
|
|
import (
|
|
"CatsOfMastodonBotGo/internal/services"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
|
|
type AppContext struct {
|
|
Db *gorm.DB
|
|
PostService *services.PostService
|
|
Instance string
|
|
Tag string
|
|
} |