feat: add solver core skeleton
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#include <fesa/core/diagnostic.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
const fesa::core::Diagnostic diagnostic{
|
||||
fesa::core::Severity::info,
|
||||
"core.info",
|
||||
"diagnostic"
|
||||
};
|
||||
return diagnostic.code == "core.info" ? 0 : 1;
|
||||
}
|
||||
Reference in New Issue
Block a user