18 lines
242 B
Go
18 lines
242 B
Go
// Package router ...
|
|
//
|
|
// Description : router ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2025-05-28 20:58
|
|
package router
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNewServer(t *testing.T) {
|
|
s := NewServer(9087)
|
|
s.Start()
|
|
}
|