mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
10 lines
81 B
Go
10 lines
81 B
Go
package record
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
type TestRecord struct {
|
|
Base
|
|
sync.Mutex
|
|
}
|