Files
EdgeAPI/internal/zero/zero.go

10 lines
145 B
Go
Raw Normal View History

2021-12-14 12:44:57 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package zero
type Zero = struct{}
func New() Zero {
return Zero{}
}