另客网go项目公用的代码库

1234567891011
  1. package notice
  2. import (
  3. "os"
  4. "testing"
  5. )
  6. func TestMain(m *testing.M) {
  7. os.Exit(m.Run())
  8. }