mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-04 16:40:07 -06:00
19 lines
237 B
C++
19 lines
237 B
C++
#ifndef SQLGEN_RESULT_HPP_
|
|
#define SQLGEN_RESULT_HPP_
|
|
|
|
#include <rfl.hpp>
|
|
|
|
namespace sqlgen {
|
|
|
|
using Error = rfl::Error;
|
|
|
|
using Nothing = rfl::Nothing;
|
|
|
|
template <class T>
|
|
using Result = rfl::Result<T>;
|
|
|
|
}; // namespace sqlgen
|
|
|
|
#endif
|
|
|