mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-04-30 23:10:14 +02:00
11 lines
145 B
Go
11 lines
145 B
Go
package Common
|
|
|
|
type Unknown interface{}
|
|
|
|
type UnknownStruct struct {
|
|
}
|
|
|
|
type UnknownArray []interface{}
|
|
|
|
type UnknownMap map[string]interface{}
|