# DelveServerOptions

- Module: [Aspire.Hosting.Go](/reference/api/typescript/aspire.hosting.go.md)
- Version: `13.5.3-preview.1.26425.3`
- Kind: `type`
- Source: [GitHub](https://github.com/microsoft/aspire/tree/b5f143315ffb6968ea939a9978797a5b20e4c688)

Configures the headless Delve debug server used for remote debugging of a Go application.

## Definition

```typescript
type DelveServerOptions = {
  Port?: number;
  AcceptMultiClient?: boolean;
  OnlySameUser?: boolean;
  ContinueOnStart?: boolean;
  Log?: boolean;
  LogOutput?: string;
}
```

## Fields

- `Port`: `number` `optional`
- `AcceptMultiClient`: `boolean` `optional`
- `OnlySameUser`: `boolean` `optional`
- `ContinueOnStart`: `boolean` `optional`
- `Log`: `boolean` `optional`
- `LogOutput`: `string` `optional`
