mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralsec.git
synced 2026-01-27 10:23:15 +00:00
19 lines
226 B
C++
19 lines
226 B
C++
//
|
|
// Created by stephane bourque on 2021-10-06.
|
|
//
|
|
|
|
#ifndef OWPROV_STORAGE_H
|
|
#define OWPROV_STORAGE_H
|
|
|
|
|
|
namespace OpenWifi {
|
|
enum DBType {
|
|
sqlite,
|
|
pgsql,
|
|
mysql
|
|
};
|
|
}
|
|
|
|
|
|
#endif //OWPROV_STORAGE_H
|