mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00
13 lines
291 B
Ruby
13 lines
291 B
Ruby
# frozen_string_literal: true
|
|
|
|
# A marker interface that allows use to lazily resolve a wider range of value
|
|
module Gitlab
|
|
module Graphql
|
|
module Deferred
|
|
def execute
|
|
raise NotImplementedError, 'Deferred classes must provide an execute method'
|
|
end
|
|
end
|
|
end
|
|
end
|