This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios' | |
export default { | |
namespaced: true, | |
state: { | |
statusPing: 1 | |
}, | |
getters: { | |
getStatusPing: state => state.statusPing | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Warface; | |
use Warface\Exceptions\WarfaceExceptions; | |
use Warface\Exceptions\WarfaceExceptionsCode; | |
use Warface\Exceptions\WarfaceExceptionsMsg; | |
class ApiClient | |
{ |