KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
go-cgi
★ 13
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
slenderman
:
A poorly drawn typeface
cloudyfs
:
A cloud in your file system
SharpSnippetCompiler-v5
:
SharpSnippetCompiler with SharpDevelop v5.0
robotics-matlab
:
👾 research on robotics, computational graphics, and 3D photography
bootplate-moonstone
:
The foundation for applications written using the moonstone library
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
go-cgi
?
Download (.md)
go-cgi ====== Usage ----- ```go #! go-cgi package main import ( "fmt" "net/http" "net/http/cgi" ) func main() { cgi.Serve(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/plain; charset=utf-8") fmt.Fprintf(w, "Hello %s", r.FormValue("name")) })) } // vim: ft=go: ``` Authors ------- Yasuhiro Matsumoto License ------- under the MIT License: http://mattn.mit-license.org/2014