webhooksd/src/gitlab.cr

14 lines
195 B
Crystal
Raw Permalink Normal View History

2020-11-27 02:39:27 +01:00
require "json"
class Gitlab::Project
include JSON::Serializable
property path_with_namespace : String
end
class Gitlab::Payload
include JSON::Serializable
property project : Project
end