Move git models to its own source files.

This commit is contained in:
Martín Lucas Golini
2024-01-26 00:48:05 -03:00
parent 80b6a4ea82
commit dd4de3e7b2
8 changed files with 521 additions and 423 deletions

View File

@@ -24,6 +24,14 @@ namespace ecode {
class Git;
class GitBranchModel;
static constexpr const char* GIT_EMPTY = "";
static constexpr const char* GIT_SUCCESS = "success";
static constexpr const char* GIT_ERROR = "error";
static constexpr const char* GIT_BOLD = "bold";
static constexpr const char* GIT_NOT_BOLD = "notbold";
static constexpr const char* GIT_TAG = "tag";
static constexpr const char* GIT_REPO = "repo";
class GitPlugin : public PluginBase {
public:
static PluginDefinition Definition() {