Zboj
Zboj is a village and municipality in Snina District in the Prešov Region of north-eastern Slovakia.
History
In historical records the village was first mentioned in 1567.
Geography
The municipality lies at an altitude of 356 metres and covers an area of 50.542 km². According to the 2013 census it had a population of 353 inhabitants.
gollark: This here is just a definition for the routes/paths/whatever of the API.
gollark: ?
gollark: Unless it had good macros.
gollark: I personally think that while less complexity is good, switching to sugarless lisp would be bad.
gollark: ```haskelltype PasteCapture a = Capture "username" Text :> Capture "pasteName" Text :> atype GetPasteAPI = PasteCapture (Get '[JSON] SanitizedPaste) :<|> "raw" :> PasteCapture (Get '[PlainText] Text)type RequiresAuth a = BasicAuth "pastecan" (Entity User) :> atype UpdatePasteAPI = RequiresAuth ( PasteCapture (Delete '[PlainText] NoContent) :<|> PasteCapture (ReqBody '[JSON] SanitizedPaste :> Put '[PlainText] NoContent))type AccountsAPI = "account" :> ( ReqBody '[JSON] User :> Post '[JSON] Bool :<|> RequiresAuth (Delete '[JSON] NoContent))type API = UpdatePasteAPI :<|> GetPasteAPI :<|> AccountsAPI```I defined the API as types. It was nice.
References
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.