mirror of
https://github.com/twofas/2fas-server.git
synced 2024-11-22 18:30:00 +01:00
24 lines
448 B
Go
24 lines
448 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/twofas/2fas-server/internal/common/logging"
|
|
"github.com/twofas/2fas-server/internal/common/storage"
|
|
"os"
|
|
)
|
|
|
|
type FcmPushConfig struct {
|
|
FcmApiServiceAccountFile *os.File
|
|
}
|
|
|
|
func NewFcmPushConfig(fs storage.FileSystemStorage) *FcmPushConfig {
|
|
file, err := fs.Get("/2fas-api/service_account_key.json")
|
|
|
|
if err != nil {
|
|
logging.Fatal(err)
|
|
}
|
|
|
|
return &FcmPushConfig{
|
|
FcmApiServiceAccountFile: file,
|
|
}
|
|
}
|