clear pdf

This commit is contained in:
2026-03-02 02:01:55 +07:00
parent 6cbf29031c
commit caaed14ebc
5 changed files with 25 additions and 6 deletions
+4
View File
@@ -7,6 +7,7 @@ import (
"evening_detective/internal/config"
"evening_detective/internal/modules/link"
"evening_detective/internal/modules/password"
"evening_detective/internal/modules/pdf"
"evening_detective/internal/services"
"evening_detective/internal/services/story_service"
proto "evening_detective/proto"
@@ -53,6 +54,8 @@ func main() {
passwordGenerator := password.NewPasswordGenerator()
pdfGenerator := pdf.NewPDFGenerator()
clientHost := config.GetHost()
proto.RegisterEveningDetectiveServer(
s,
@@ -62,6 +65,7 @@ func main() {
storyService,
linkService,
passwordGenerator,
pdfGenerator,
clientHost,
),
),