| @@ -9,8 +9,9 @@ | ||
| 9 | 9 | |
| 10 | 10 | namespace Timetics\Core; |
| 11 | 11 | |
| 12 | 12 | use Hooks; |
| 13 | +use Timetics; | |
| 13 | 14 | use Timetics\Core\Appointments\ApiAppointmentTaxonomy; |
| 14 | 15 | use Timetics\Core\Appointments\Appointment; |
| 15 | 16 | use Timetics\Core\Bookings\Booking; |
| 16 | 17 | use Timetics\Core\DummyData\Api_Faker; |
| @@ -16,8 +17,10 @@ | ||
| 16 | 17 | use Timetics\Core\DummyData\Api_Faker; |
| 17 | 18 | use Timetics\Core\Services\Service; |
| 18 | 19 | use Timetics\Core\Staff\Staff; |
| 19 | 20 | use Timetics\Core\Staffs\Staff as StaffsStaff; |
| 21 | +use Timetics\Core\Integrations\Google\Service\Google_Calendar_Sync; | |
| 22 | +use Timetics\Core\BookingCalendars\Api_Booking_Calendar; | |
| 20 | 23 | use Timetics\Utils\Singleton; |
| 21 | 24 | |
| 22 | 25 | /** |
| 23 | 26 | * Base Class |
| @@ -53,8 +56,10 @@ | ||
| 53 | 56 | Admin\Hooks::instance()->init(); |
| 54 | 57 | Appointments\Hooks::instance()->init(); |
| 55 | 58 | Api_Faker::instance(); |
| 56 | 59 | ApiAppointmentTaxonomy::instance(); |
| 60 | + Google_Calendar_Sync::instance(); | |
| 61 | + Api_Booking_Calendar::instance(); | |
| 57 | 62 | } |
| 58 | 63 | } |
| 59 | 64 | |
| 60 | 65 | |