// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details. #pragma once #include namespace hilti { namespace result { using Error = hilti::rt::result::Error; using NoResult = hilti::rt::result::NoResult; } // namespace result template using Result = hilti::rt::Result; using Nothing = hilti::rt::Nothing; } // namespace hilti