mirror of https://gitee.com/openkylin/genmai.git
commit
e021b1a35e
|
@ -28,9 +28,26 @@
|
|||
|
||||
package genmai
|
||||
|
||||
type Singleton interace {
|
||||
import (
|
||||
"sync"
|
||||
)
|
||||
|
||||
type Singleton interface {
|
||||
}
|
||||
|
||||
type doctor struct {
|
||||
}
|
||||
|
||||
var (
|
||||
instance *doctor
|
||||
once sync.Once
|
||||
)
|
||||
|
||||
func DoctorIns() Singleton {
|
||||
once.Do( func() {
|
||||
instance = &doctor{}
|
||||
})
|
||||
|
||||
return instance
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Filename: ReportCommon.go
|
||||
//
|
||||
// Version: 1.0
|
||||
// Created: 2022年11月08日 16时32分58秒
|
||||
// Revision: none
|
||||
// Compiler: go
|
||||
//
|
||||
// Author: alpha
|
||||
// Organization: alpha
|
||||
// Contacts: chenxinquan@kylinos.com
|
||||
//
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Log:
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Todo:
|
||||
//
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
package genmai
|
||||
|
||||
type ReportCommon map[string]interface {}
|
Loading…
Reference in New Issue