mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-24 09:18:27 +00:00
15 lines
241 B
Go
15 lines
241 B
Go
|
|
// Copyright 2025, Command Line Inc.
|
||
|
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
// used for shared datastructures
|
||
|
|
package baseds
|
||
|
|
|
||
|
|
type LinkId int32
|
||
|
|
|
||
|
|
const NoLinkId = 0
|
||
|
|
|
||
|
|
type RpcInputChType struct {
|
||
|
|
MsgBytes []byte
|
||
|
|
IngressLinkId LinkId
|
||
|
|
}
|