Clio  develop
The XRP Ledger API server.
Loading...
Searching...
No Matches
MigrationManagerInterface.hpp
1#pragma once
2
3#include "migration/MigrationInspectorInterface.hpp"
4
5#include <string>
6
7namespace migration {
8
18 virtual void
19 runMigration(std::string const&) = 0;
20};
21
22} // namespace migration
The interface for the migration inspector.The Clio server application will use this interface to insp...
Definition MigrationInspectorInterface.hpp:15
The interface for the migration manager. The migration application layer will use this interface to r...
Definition MigrationManagerInterface.hpp:14
virtual void runMigration(std::string const &)=0
Run the migration according to the given migrator's name.