display-test/api/pages/pages.go

12 lines
167 B
Go
Raw Normal View History

2024-09-29 18:09:59 +00:00
package pages
import "io"
type Page interface {
2024-09-30 18:56:45 +00:00
// Warning: now threre is no protection from double activation/diactivation
2024-09-29 18:09:59 +00:00
Activate()
Diactivate()
io.Closer
}