https://github.com/mskoroglu/golaxy
Golang İçin Web Çatısı Denemesi
https://github.com/mskoroglu/golaxy
Last synced: about 1 year ago
JSON representation
Golang İçin Web Çatısı Denemesi
- Host: GitHub
- URL: https://github.com/mskoroglu/golaxy
- Owner: mskoroglu
- License: apache-2.0
- Created: 2017-01-15T14:22:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-07-03T13:18:41.000Z (almost 7 years ago)
- Last Synced: 2024-06-20T14:23:05.477Z (almost 2 years ago)
- Language: Go
- Size: 13.7 KB
- Stars: 16
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# golaxy
Go dilini öğrenmek amacıyla başladığım bir çalışmadır. Kararlı çalıştığını iddia etmiyor, uygulamalarınızda kullanmanız sonucunda alabileceğiniz hatalar için sorumluluk kabul etmiyorum :)
### Kullanım
```
go get github.com/mskoroglu/golaxy
```
komutu ile bağımlılık çekildikten sonra
```
var _ = http.Get(`/hello/(?P\w+)`, func(pv *path.Variable) string {
return "Hello " + pv.GetString("name")
})
```
fonksiyonunu yazıp tarayıcıda ```http://localhost:8080/hello/Gopher``` adresini açın.