(ctx context.Context, winSize *waveobj.WinSize, workspaceId string)
| 43 | } |
| 44 | |
| 45 | func (svc *WindowService) CreateWindow(ctx context.Context, winSize *waveobj.WinSize, workspaceId string) (*waveobj.Window, error) { |
| 46 | window, err := wcore.CreateWindow(ctx, winSize, workspaceId) |
| 47 | if err != nil { |
| 48 | return nil, fmt.Errorf("error creating window: %w", err) |
| 49 | } |
| 50 | return window, nil |
| 51 | } |
| 52 | |
| 53 | func (svc *WindowService) SetWindowPosAndSize_Meta() tsgenmeta.MethodMeta { |
| 54 | return tsgenmeta.MethodMeta{ |
nothing calls this directly
no test coverage detected