mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
12 lines
350 B
C++
12 lines
350 B
C++
#include "dashboard_import.h"
|
|
|
|
namespace esphome {
|
|
namespace dashboard_import {
|
|
|
|
static std::string g_package_import_url; // NOLINT
|
|
|
|
std::string get_package_import_url() { return g_package_import_url; }
|
|
void set_package_import_url(std::string url) { g_package_import_url = std::move(url); }
|
|
|
|
} // namespace dashboard_import
|
|
} // namespace esphome
|