webhooksd/src/github.cr

14 lines
195 B
Crystal

require "json"
class Github::Repository
include JSON::Serializable
property full_name : String
end
class Github::Payload
include JSON::Serializable
property repository : Repository
end