Initial commit

This commit is contained in:
Senad Uka
2022-03-23 05:44:42 +01:00
parent 1405281a5c
commit eea10dd03b
113 changed files with 3617 additions and 81 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
module Vendors
module Errors
class ContentIngestError < StandardError; end
end
end

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
module Vendors
module Errors
class ScheduleFetchError < StandardError; end
end
end

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
module Vendors
module Errors
class SchedulePublishError < StandardError; end
end
end

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
module Vendors
module Errors
class ScheduleTransformError < StandardError; end
end
end