Archived
1
This commit is contained in:
2024-12-23 01:44:58 +03:00
parent 0c5fa2abd7
commit 2c3f607a92
6 changed files with 38 additions and 25 deletions

View File

@@ -0,0 +1,12 @@
package types
type TPort struct {
Address string `yaml:"address"`
Port uint16 `yaml:"port"`
}
type TOpenPort struct {
Name string `yaml:"name"`
Local TPort `yaml:"local"`
Remote TPort `yaml:"remote"`
}