Skip to content

Instantly share code, notes, and snippets.

View afrikaan-official's full-sized avatar
💭
I may be slow to respond.

Kaan afrikaan-official

💭
I may be slow to respond.
View GitHub Profile
@afrikaan-official
afrikaan-official / main.go
Created October 5, 2016 08:09
sample http health checker with http package
package main
import (
"net/http"
_ "github.com/lib/pq"
"github.com/astaxie/beego/orm"
"encoding/json"
)
@afrikaan-official
afrikaan-official / main.go
Created October 4, 2016 12:17
sample sync package in go
package main
import ("fmt"
"net/http"
"time"
"sync"
)
var wg=sync.WaitGroup{}