package solver import "maze-solver/maze" type Bfs struct{} func (*Bfs) Solve(maze *maze.Maze) *maze.SolvedMaze { return nil }