feat: Initial commit

This commit is contained in:
Aerex
2020-05-03 16:41:59 -05:00
parent b3175cb4b8
commit 1281ebff03
15 changed files with 652 additions and 5 deletions

12
lib/Storages/IStorage.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace Aerex\BaikalStorage\Storages;
use Sabre\VObject\Component\VCalendar as Calendar;
interface IStorage {
public function save(Calendar $c);
public function refresh();
public function getConfig();
public function setRawConfigs();
}