File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2
2
python /
3
3
.vscode
4
4
.idea /
5
+ .env
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ func NewRecordConfigDataS() *RecordConfigDataS {
33
33
34
34
fajr := today .Fajr .Iqama
35
35
dhuhr := today .Dhuhr .Iqama
36
+ maghrib := today .Maghrib .Iqama
37
+ isha := today .Isha .Iqama
36
38
rc := & RecordConfigDataS {
37
39
iqama : iqamaClient ,
38
40
data : & []RecordConfig {
@@ -54,6 +56,19 @@ func NewRecordConfigDataS() *RecordConfigDataS {
54
56
Duration : DarsRecordDuration ,
55
57
RecordingDays : EveryDay ,
56
58
},
59
+ {
60
+ Description : "Maghrib Recording Sunday" ,
61
+ StartTime : maghrib ,
62
+ Duration : DarsRecordDuration ,
63
+ RecordingDays : []time.Weekday {time .Sunday },
64
+ },
65
+
66
+ {
67
+ Description : "Isha Recording" ,
68
+ StartTime : isha ,
69
+ Duration : DarsRecordDuration ,
70
+ RecordingDays : EveryDay ,
71
+ },
57
72
},
58
73
}
59
74
return rc
You can’t perform that action at this time.
0 commit comments