You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
338 B
Go
13 lines
338 B
Go
package response
|
|
|
|
import (
|
|
internalprotocol "git.noahlan.cn/noahlan/nnet/v2/internal/protocol"
|
|
responsepkg "git.noahlan.cn/noahlan/nnet/v2/pkg/response"
|
|
)
|
|
|
|
// NewFrameHeader 创建新的协议帧头
|
|
// 使用统一的protocol.FrameHeader实现
|
|
func NewFrameHeader() responsepkg.FrameHeader {
|
|
return internalprotocol.NewFrameHeader()
|
|
}
|