--- bynk.toml ---
# Bynk project manifest — marks the project root for `bynkc` and the LSP.
[project]
name = "hello"
version = "0.1.0"

[paths]
src = "src"
tests = "tests"
--- .gitignore ---
# Build output `bynk dev` writes (compiled workers + local wrangler state).
/.bynk
--- src/hello.bynk ---
context hello

consumes bynk { Logger }

service api from http {
	on GET("/") by v: Visitor () -> Effect[HttpResult[String]] given Logger {
		let _ <- Logger.info("hello from hello")
		Ok("Hello from hello!")
	}
}
