只是一个简单的计网课设
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
eruhs/describer/describer.go

13 lines
215 B

package describer
type DescribeItem struct {
Name string
Describe string
}
type Describe map[int]DescribeItem
type LayerDescriber interface {
GetHeader() []byte
GetDetailDescribe() Describe
}