1<?php
2/**
3 * Defines the AJAX interface for Mnemo.
4 *
5 * Copyright 2011-2017 Horde LLC (http://www.horde.org/)
6 *
7 * See the enclosed file LICENSE for license information (ASL). If you
8 * did not receive this file, see http://www.horde.org/licenses/apache.
9 *
10 * @author   Jan Schneider <jan@horde.org>
11 * @category Horde
12 * @license  http://www.horde.org/licenses/apache ASL
13 * @package  Mnemo
14 */
15class Mnemo_Ajax_Application extends Horde_Core_Ajax_Application
16{
17    /**
18     */
19    protected function _init()
20    {
21        $this->addHandler('Horde_Core_Ajax_Application_Handler_Imple');
22        $this->addHandler('Horde_Core_Ajax_Application_Handler_Prefs');
23    }
24
25}
26