[nostalgia,olympic] Move olympic::run to global namespace
All checks were successful
Build / build (push) Successful in 2m34s

This commit is contained in:
2024-12-06 00:13:10 -06:00
parent 9a42a9b9d9
commit e0ec9e0c5f
4 changed files with 6 additions and 16 deletions

View File

@ -97,8 +97,6 @@ static ox::Error run(ox::SpanView<char const*> argv, ox::StringView projectDataD
return pack(argSrc, argRomBin, argManifest, projectDataDir);
}
namespace olympic {
ox::Error run(
[[maybe_unused]] ox::StringView project,
[[maybe_unused]] ox::StringView appName,
@ -106,5 +104,3 @@ ox::Error run(
ox::SpanView<char const*> argv) noexcept {
return ::run(argv, projectDataDir);
}
}