13 lines
163 B
Go
13 lines
163 B
Go
package internal
|
|
|
|
import (
|
|
"CatsOfMastodonBotGo/internal/services"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
|
|
type AppContext struct {
|
|
Db *gorm.DB
|
|
PostService *services.PostService
|
|
} |