mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-11 08:11:30 +08:00

* feat(emailing): initial commit for emailing * feat(emailing): implement emailing * test(integration): fix tests * fix(emailing): fix directory path * fix(emailing): fix email template path * fix(emailing): copy from go-gomail * fix(emailing): copy from go-gomail * fix(emailing): fix smtp bugs * test(integration): fix tests * feat(emailing): let missing templates passthrough * feat(emailing): let missing templates passthrough * feat(smtp): refactor and beautify * test(integration): fix tests * docs(smtp): fix incorrect grammer * feat(smtp): add to header * feat(smtp): remove comments * chore(smtp): address comments --------- Co-authored-by: Vikrant Gupta <vikrant@signoz.io>
15 lines
275 B
Go
15 lines
275 B
Go
package sqlite
|
|
|
|
import (
|
|
"github.com/SigNoz/signoz/pkg/sqlstore"
|
|
)
|
|
|
|
type modelDao struct {
|
|
sqlStore sqlstore.SQLStore
|
|
}
|
|
|
|
// InitDB creates and extends base model DB repository
|
|
func NewModelDao(sqlStore sqlstore.SQLStore) *modelDao {
|
|
return &modelDao{sqlStore: sqlStore}
|
|
}
|