github.com/hy3/cuto@v0.9.8-0.20160830082821-aa6652f877b7/db/doc.go (about) 1 // DB周りの定義や処理を記述するパッケージ。 2 package db 3 4 // 実行結果のステータス 5 const ( 6 RUNNING = iota 7 NORMAL 8 WARN 9 ABNORMAL = 9 10 ) 11 12 // 実行結果の文字列ステータス 13 const ( 14 ST_RUNNING = "RUNNING" 15 ST_NORMAL = "NORMAL END" 16 ST_WARN = "WARN END" 17 ST_ABNORMAL = "ABNORMAL END" 18 )