backend/internal/system/surfacebox.go

10 lines
201 B
Go

package system
import "errors"
import "git.tebibyte.media/tomo/tomo"
func (this *System) NewSurfaceBox () (tomo.SurfaceBox, error) {
// TODO
return nil, errors.New("system: not implemented yet")
}