9 lines
193 B
Go
9 lines
193 B
Go
|
package x
|
||
|
|
||
|
import "errors"
|
||
|
import "git.tebibyte.media/tomo/tomo"
|
||
|
|
||
|
func (backend *Backend) NewSurfaceBox() (tomo.SurfaceBox, error) {
|
||
|
return nil, errors.New("SurfaceBox not implemented yet")
|
||
|
}
|