Drawn the skeleton code for the structure of the project

This commit is contained in:
Karma Riuk
2023-08-03 21:07:58 +02:00
parent 6d81f34a7c
commit fbe066db17
9 changed files with 95 additions and 0 deletions

11
io/writer/image.go Normal file
View File

@ -0,0 +1,11 @@
package writer
import (
"maze-solver/maze"
)
type ImageWriter struct{}
func (w *ImageWriter) Write(filename string, maze *maze.SolvedMaze) error {
return nil
}

7
io/writer/writer.go Normal file
View File

@ -0,0 +1,7 @@
package writer
import "maze-solver/maze"
type Writer interface {
Write(filename string, maze *maze.SolvedMaze) error
}