From fa09e2ee08e7e89a0e41c45e7d4ba3a3e4ad92ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20Jurmanovi=C4=87?= Date: Fri, 3 Sep 2021 22:50:41 +0200 Subject: [PATCH] added transaction status --- pkg/controllers/transactionStatus.go | 1 + pkg/migrate/10_create_table_transaction_status.go | 1 + pkg/migrate/11_populate_transaction_status.go | 1 + pkg/models/transactionStatus.go | 1 + pkg/services/transactionStatus.go | 1 + 5 files changed, 5 insertions(+) create mode 100644 pkg/controllers/transactionStatus.go create mode 100644 pkg/migrate/10_create_table_transaction_status.go create mode 100644 pkg/migrate/11_populate_transaction_status.go create mode 100644 pkg/models/transactionStatus.go create mode 100644 pkg/services/transactionStatus.go diff --git a/pkg/controllers/transactionStatus.go b/pkg/controllers/transactionStatus.go new file mode 100644 index 0000000..2d32936 --- /dev/null +++ b/pkg/controllers/transactionStatus.go @@ -0,0 +1 @@ +package controllers diff --git a/pkg/migrate/10_create_table_transaction_status.go b/pkg/migrate/10_create_table_transaction_status.go new file mode 100644 index 0000000..278a35f --- /dev/null +++ b/pkg/migrate/10_create_table_transaction_status.go @@ -0,0 +1 @@ +package migrate diff --git a/pkg/migrate/11_populate_transaction_status.go b/pkg/migrate/11_populate_transaction_status.go new file mode 100644 index 0000000..278a35f --- /dev/null +++ b/pkg/migrate/11_populate_transaction_status.go @@ -0,0 +1 @@ +package migrate diff --git a/pkg/models/transactionStatus.go b/pkg/models/transactionStatus.go new file mode 100644 index 0000000..2640e7f --- /dev/null +++ b/pkg/models/transactionStatus.go @@ -0,0 +1 @@ +package models diff --git a/pkg/services/transactionStatus.go b/pkg/services/transactionStatus.go new file mode 100644 index 0000000..5e568ea --- /dev/null +++ b/pkg/services/transactionStatus.go @@ -0,0 +1 @@ +package services