manager/ui/handler/vars.go

12 lines
135 B
Go
Raw Normal View History

2022-05-22 14:56:45 +02:00
package handler
import "code.icod.de/postfix/manager/ent"
var (
client *ent.Client
)
func SetClient(c *ent.Client) {
client = c
}