diff --git a/client/nim/ponyapi.nim b/client/nim/ponyapi.nim index 0545e68..cf31258 100644 --- a/client/nim/ponyapi.nim +++ b/client/nim/ponyapi.nim @@ -3,11 +3,11 @@ import json type Episode* = object of RootObj - name: string - air_date: int - season: int - episode: int - is_movie: bool + name*: string + air_date*: int + season*: int + episode*: int + is_movie*: bool const API_ENDPOINT: string = "http://ponyapi.apps.xeserv.us"