summaryrefslogtreecommitdiff
path: root/src/settings.hpp
blob: 8ac5c0d3fd85613fa30dcaf747996cebb7817686 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <string>

namespace WebStat {
	struct Settings {
		std::string dbType = "postgresql";
	};
}