2020-07-03 19:13:41 -05:00
|
|
|
#include <String.h>
|
|
|
|
#include "Config.h"
|
|
|
|
|
|
|
|
Config::Config () {
|
|
|
|
verbose = false;
|
|
|
|
daemon = true;
|
|
|
|
mimetype = BString("text/xml");
|
|
|
|
outDir = BString("/boot/home/feeds/");
|
2020-07-04 12:53:08 -05:00
|
|
|
targetFeeds = NULL;
|
2020-07-03 19:13:41 -05:00
|
|
|
}
|