forked from Elara6331/itd
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			168 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			168 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package api
 | 
						|
 | 
						|
import "context"
 | 
						|
 | 
						|
func (c *Client) WeatherUpdate(ctx context.Context) error {
 | 
						|
	return c.client.Call(
 | 
						|
		ctx,
 | 
						|
		"ITD",
 | 
						|
		"WeatherUpdate",
 | 
						|
		nil,
 | 
						|
		nil,
 | 
						|
	)
 | 
						|
}
 |