mirror of
https://gitee.com/willfree/mlsr.git
synced 2026-06-16 17:08:00 +08:00
17 lines
202 B
Go
17 lines
202 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"minlib/logicface"
|
|
"mlsr/lsa"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("abc")
|
|
s:=logicface.LogicFaceTypeEther
|
|
fmt.Println("def",s)
|
|
|
|
ss:=lsa.AdjLsaAdjacencyInfo{}
|
|
ss.Status=1
|
|
}
|