diff --git a/source/backends/debian/package.d b/source/backends/debian/package.d new file mode 100644 index 0000000..ea27a2d --- /dev/null +++ b/source/backends/debian/package.d @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2016 Matthias Klumpp + * + * Licensed under the GNU Lesser General Public License Version 3 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the license, or + * (at your option) any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this software. If not, see . + */ + +module ag.backend.debian; + +public import ag.backend.debian.debpackage; +public import ag.backend.debian.contentsindex; +public import ag.backend.debian.pkgindex; diff --git a/source/engine.d b/source/engine.d index 4b7b697..b7de8e9 100644 --- a/source/engine.d +++ b/source/engine.d @@ -36,8 +36,7 @@ import ag.hint; import ag.reportgenerator; import ag.backend.intf; -import ag.backend.debian.pkgindex; -import ag.backend.debian.contentsindex; +import ag.backend.debian; import ag.handlers.iconhandler;