19 lines
382 B
C++
19 lines
382 B
C++
// Copyright 2019-2024 The Hush developers
|
|
// Released under the GPLv3
|
|
#include "DataStore.h"
|
|
|
|
SietchDataStore* DataStore::getSietchDataStore()
|
|
{
|
|
return SietchDataStore::getInstance();
|
|
}
|
|
|
|
ChatDataStore* DataStore::getChatDataStore()
|
|
{
|
|
return ChatDataStore::getInstance();
|
|
}
|
|
|
|
ContactDataStore* DataStore::getContactDataStore()
|
|
{
|
|
return ContactDataStore::getInstance();
|
|
}
|