penambahan template

This commit is contained in:
2025-07-25 09:40:58 +07:00
parent e976215239
commit 6c23369c06
5 changed files with 85 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
package satu_data
import (
"gorm.io/gorm"
)
type DatabaseService struct {
DB *gorm.DB
}
func NewDatabaseService(db *gorm.DB) *DatabaseService {
return &DatabaseService{DB: db}
}