mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-27 05:37:39 +02:00
6 lines
120 B
C++
6 lines
120 B
C++
#pragma once
|
|
#include <expected>
|
|
#include <string>
|
|
|
|
template <typename T> using Result = std::expected<T, std::string>;
|