|  | @@ -8,7 +8,7 @@ exports.get = async (url) => {
 | 
	
		
			
				|  |  |    if (baseUrl.includes('dev')) token = process.env.XNX1Q
 | 
	
		
			
				|  |  |    const response = await axios.get(url, {
 | 
	
		
			
				|  |  |      headers: {
 | 
	
		
			
				|  |  | -      Authorization: `Bearer ${token}`,
 | 
	
		
			
				|  |  | +      Authorization: `Bearer ${coba.decrypt(token)}`,
 | 
	
		
			
				|  |  |        Accept: 'application/json',
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      httpsAgent: new https.Agent({
 | 
	
	
		
			
				|  | @@ -24,7 +24,7 @@ exports.post = async (url, data, config) => {
 | 
	
		
			
				|  |  |    if (baseUrl.includes('dev')) token = process.env.XNX1Q
 | 
	
		
			
				|  |  |    const response = await axios.post(url, data, {
 | 
	
		
			
				|  |  |      headers: {
 | 
	
		
			
				|  |  | -      Authorization: `Bearer ${token}`,
 | 
	
		
			
				|  |  | +      Authorization: `Bearer ${coba.decrypt(token)}`,
 | 
	
		
			
				|  |  |        Accept: 'application/json',
 | 
	
		
			
				|  |  |        ...config,
 | 
	
		
			
				|  |  |      },
 |