mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-27 06:58:42 +00:00
26 lines
405 B
C++
26 lines
405 B
C++
/**
|
|
* Karaka
|
|
*
|
|
* @package Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
#ifndef MODELS_DB_H
|
|
#define MODELS_DB_H
|
|
|
|
namespace Models {
|
|
class Db {
|
|
private:
|
|
|
|
public:
|
|
static inline
|
|
int setup_connection (char *cfg)
|
|
{
|
|
return 0;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif |