Skip to content

Commit 5af98b7

Browse files
committed
feat: update domain
1 parent ab97c09 commit 5af98b7

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

domain/reminder.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ func (rt ReminderType) String() string {
1717
type (
1818
JamaatDelayConfig struct {
1919
Fajr time.Duration `json:"fajr"`
20-
Shuruq time.Duration `json:"shuruq"`
2120
Dhuhr time.Duration `json:"dhuhr"`
2221
Asr time.Duration `json:"asr"`
2322
Maghrib time.Duration `json:"maghrib"`
@@ -47,8 +46,6 @@ func (j *JamaatDelayConfig) GetDelayByPrayerID(prayerID PrayerID) time.Duration
4746
switch prayerID {
4847
case PrayerIDFajr:
4948
return j.Fajr
50-
case PrayerIDShuruq:
51-
return j.Shuruq
5249
case PrayerIDDhuhr:
5350
return j.Dhuhr
5451
case PrayerIDAsr:
@@ -66,8 +63,6 @@ func (j *JamaatDelayConfig) SetDelayByPrayerID(prayerID PrayerID, delay time.Dur
6663
switch prayerID {
6764
case PrayerIDFajr:
6865
j.Fajr = delay
69-
case PrayerIDShuruq:
70-
j.Shuruq = delay
7166
case PrayerIDDhuhr:
7267
j.Dhuhr = delay
7368
case PrayerIDAsr:

0 commit comments

Comments
 (0)