moved vm.php into vm.class.php Todo: add monit() function.

This commit is contained in:
François Serman 2013-04-15 13:42:29 +00:00
parent fe34b695b9
commit 4c6737f5c7
2 changed files with 6 additions and 0 deletions

1
.gitattributes vendored
View File

@ -372,6 +372,7 @@ bureau/class/m_trash.php -text
bureau/class/mime.php -text
bureau/class/reset_stats_conf.php -text
bureau/class/variables.php -text
bureau/class/vm.class.php -text
bureau/class/vm.php -text
bureau/index.php -text
bureau/locales/Makefile -text

View File

@ -0,0 +1,5 @@
<?php
interface vm {
public function start();
public function stop();
}