diff options
Diffstat (limited to 'lib/Client.php')
-rw-r--r-- | lib/Client.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Client.php b/lib/Client.php index a25ce15..da71d5d 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -3,6 +3,7 @@ require 'resources/api_keys.php'; require 'resources/asm_groups.php'; require 'resources/asm_suppressions.php'; +require 'resources/global_stats.php'; class Client { @@ -48,6 +49,7 @@ class Client $this->api_keys = new APIKeys($this); $this->asm_groups = new ASMGroups($this); $this->asm_suppressions = new ASMSuppressions($this); + $this->global_stats = new GlobalStats($this); } /** |