fcm setup

This commit is contained in:
Efril
2026-05-09 12:24:44 +07:00
parent 2c76962959
commit 23b6293502
7 changed files with 372 additions and 33 deletions
+14
View File
@@ -0,0 +1,14 @@
package config
type FCM struct {
CredentialsFile string `mapstructure:"credentials_file"`
ProjectID string `mapstructure:"project_id"`
}
func (f *FCM) GetCredentialsFile() string {
return f.CredentialsFile
}
func (f *FCM) GetProjectID() string {
return f.ProjectID
}