webhooksd/src/gitea.cr

16 lines
220 B
Crystal
Raw Permalink Normal View History

2020-11-27 02:39:27 +01:00
require "json"
class Gitea::Repository
include JSON::Serializable
property full_name : String
end
class Gitea::Payload
include JSON::Serializable
property repository : Repository
2020-12-23 10:21:41 +01:00
property secret : String
2020-11-27 02:39:27 +01:00
end