display-test/api/pages/pages.go
2024-09-30 21:56:45 +03:00

12 lines
167 B
Go

package pages
import "io"
type Page interface {
// Warning: now threre is no protection from double activation/diactivation
Activate()
Diactivate()
io.Closer
}