server: Add a fallback MIME type (application/octet-stream)
[package-cache.git] / package-cache
1 #!/usr/bin/env python
2 #
3 # Copyright (C) 2014 W. Trevor King <wking@tremily.us>
4 #
5 # This file is part of package-cache.
6 #
7 # package-cache is free software: you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by the Free
9 # Software Foundation, either version 3 of the License, or (at your option) any
10 # later version.
11 #
12 # package-cache is distributed in the hope that it will be useful, but WITHOUT
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15 # details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # package-cache.  If not, see <http://www.gnu.org/licenses/>.
19
20 from package_cache.main import run
21
22
23 run()