Last active
October 22, 2020 19:19
-
-
Save nikki93/4e673ffa9a37df2526e49f76f4f35735 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncdispatch | |
import jester | |
routes: | |
get "/": | |
resp "hello, world!" | |
runForever() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Package | |
version = "0.1.0" | |
author = "Nikhilesh Sigatapu" | |
description = "Tweeter from \"Nim in Action\"" | |
license = "MIT" | |
srcDir = "src" | |
bin = @["tweeter"] | |
skipExt = @["nim"] | |
# Dependencies | |
requires "nim >= 1.4.0" | |
requires "jester >= 0.0.1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment