ContentResolver앱에서
Manifest.xml에
와 같이 제공처의 프로바이더 auth를 넣어줘야...
-
This is Slide 1 Title
This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 2 Title
This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 3 Title
This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
2021년 3월 27일 토요일
2021년 3월 24일 수요일
[Golang] net/http 패키지를 이용한 웹서버 제작
net/http 패키지를 이용한 웹서버 제작golang에서 기본적으로 제공하는 net/http패키지를 이용해서 웹서버를 구축할수 있다. 일단 얼마나 간단한지 보자.1.초간단 서버 구동 package mainimport ( "fmt" "net/http")func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, r.Method, "welcome Go lang") }) http.ListenAndServe(":8080", nil)}/* or import "log"fun...