mirror of
https://github.com/luscis/openlan.git
synced 2025-09-26 20:41:29 +08:00
21 lines
252 B
Go
21 lines
252 B
Go
//go:build !linux && !windows && !darwin
|
|
|
|
package access
|
|
|
|
import "github.com/luscis/openlan/pkg/config"
|
|
|
|
type Point struct {
|
|
}
|
|
|
|
func NewPoint(config *config.Point) *Point {
|
|
return nil
|
|
}
|
|
|
|
func (p *Point) Initialize() {
|
|
|
|
}
|
|
|
|
func (p *Point) Start() {
|
|
|
|
}
|