mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-26 06:22:51 -05:00
12 lines
189 B
C++
12 lines
189 B
C++
#pragma once
|
|
|
|
#include <store_mode/store.hpp>
|
|
|
|
namespace store::store_cache {
|
|
|
|
std::optional<StoreConfig> get_store_config();
|
|
|
|
bool save_store_config(const StoreConfig& config);
|
|
|
|
}
|