* enable installation of recommends by default
[ntk/apt.git] / methods / http_main.cc
CommitLineData
5f6b130d
MV
1#include <apt-pkg/fileutl.h>
2#include <apt-pkg/acquire-method.h>
3
4#include "connect.h"
5#include "rfc2553emu.h"
6#include "http.h"
7
8
9int main()
10{
11 setlocale(LC_ALL, "");
12
13 HttpMethod Mth;
14 return Mth.Loop();
15}