2022-03-18 13:15:55 +01:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StoreLab struct {
|
|
|
|
db string
|
|
|
|
s Store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StoreLab) Open() {
|
2022-03-18 13:22:50 +01:00
|
|
|
fmt.Printf("Lab: Store Open")
|
2022-03-18 13:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StoreLab) AddPage() {
|
2022-03-18 13:22:50 +01:00
|
|
|
fmt.Println("Lab: Page created")
|
2022-03-18 13:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StoreLab) GetPage() {
|
2022-03-18 13:22:50 +01:00
|
|
|
fmt.Println("Lab: Get Page")
|
2022-03-18 13:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StoreLab) GetAllPages() {
|
2022-03-18 13:22:50 +01:00
|
|
|
fmt.Println("Lab: Get All Pages")
|
2022-03-18 13:15:55 +01:00
|
|
|
}
|