|  | @@ -11,6 +11,7 @@ class Config(object):
 | 
	
		
			
				|  |  |          week_push_one:2
 | 
	
		
			
				|  |  |          week_push_two: 3
 | 
	
		
			
				|  |  |          day_work_two: 4
 | 
	
		
			
				|  |  | +        day_work_three: 4
 | 
	
		
			
				|  |  |      """
 | 
	
		
			
				|  |  |      JOBS = [
 | 
	
		
			
				|  |  |          {
 | 
	
	
		
			
				|  | @@ -46,7 +47,16 @@ class Config(object):
 | 
	
		
			
				|  |  |              'args': '',
 | 
	
		
			
				|  |  |              'trigger': 'cron',
 | 
	
		
			
				|  |  |              'day_of_week': '*',
 | 
	
		
			
				|  |  | -            'hour': 10,
 | 
	
		
			
				|  |  | +            'hour': 8,
 | 
	
		
			
				|  |  | +            'minute': 30
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +            'id': 'day_work_three',
 | 
	
		
			
				|  |  | +            'func': 'apscheduler_elab:Funcs.day_work_three',
 | 
	
		
			
				|  |  | +            'args': '',
 | 
	
		
			
				|  |  | +            'trigger': 'cron',
 | 
	
		
			
				|  |  | +            'day_of_week': '*',
 | 
	
		
			
				|  |  | +            'hour': 8,
 | 
	
		
			
				|  |  |              'minute': 30
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |      ]
 |