blob: ef719930a2cde2a0c3c229ac598bbd2c4c5ee090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright 2023 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#include "system_fsm/service_locator.hpp"
#include <memory>
#include "drivers/nvs.hpp"
#include "drivers/storage.hpp"
#include "drivers/touchwheel.hpp"
namespace system_fsm {
ServiceLocator::ServiceLocator() : sd_(drivers::SdState::kNotPresent) {}
} // namespace system_fsm
|