am-i-alive-go

Make it easy for people to check if you are alive or not.
git clone http://git.hanabi.in/repos/am-i-alive-go.git
Log | Files | Refs | README | LICENSE

consts.go (208B)


      1 package consts
      2 
      3 const (
      4 	Offset  = 164 * 10_000_000
      5 	Ms      = 1_000
      6 	Sec2hr  = 3_600
      7 	SQLITE3 = "sqlite3"
      8 )
      9 
     10 const (
     11 	T_4hr  = 4 * Sec2hr
     12 	T_18hr = 18 * Sec2hr
     13 	T_60hr = 60 * Sec2hr
     14 	T_5d   = 120 * Sec2hr
     15 )