<?php

namespace LoftyIDX\includes\providers;

defined('ABSPATH') || exit;

class LoftyIDXNoticeServiceProvider implements LoftyIDXBaseProvider
{
    protected $container = null;

    public function __construct($container)
    {
        $this->container = $container;
    }

    public function register()
    {
        $this->init_hooks();
    }

    public function init_hooks() {}
}
