rename class to PVE::APIServer::AnyEvent

So that we can move all api server related code into PVE::APIServer::*.
This commit is contained in:
Dietmar Maurer 2017-01-13 18:18:13 +01:00
parent 859f1fd3a6
commit d08808bc8a
2 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@ deb ${DEB}:
lintian ${DEB}
install:
install -d -m 755 ${PERL5DIR}/PVE/
install -m 0644 PVE/AsyncHTTPServer.pm ${PERL5DIR}/PVE
install -d -m 755 ${PERL5DIR}/PVE/APIServer
install -m 0644 PVE/APIServer/AnyEvent.pm ${PERL5DIR}/PVE/APIServer
.PHONY: upload
upload: ${DEB}

View File

@ -1,4 +1,4 @@
package PVE::AsyncHTTPServer;
package PVE::APIServer::AnyEvent;
use strict;
use warnings;