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.
14 lines
327 B
Go
14 lines
327 B
Go
package response
|
|
|
|
import (
|
|
internalprotocol "github.com/noahlann/nnet/internal/protocol"
|
|
responsepkg "github.com/noahlann/nnet/pkg/response"
|
|
)
|
|
|
|
// NewFrameHeader 创建新的协议帧头
|
|
// 使用统一的protocol.FrameHeader实现
|
|
func NewFrameHeader() responsepkg.FrameHeader {
|
|
return internalprotocol.NewFrameHeader()
|
|
}
|
|
|