Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract databases in go schema #1120

Closed
wesbillman opened this issue Mar 21, 2024 · 2 comments
Closed

Extract databases in go schema #1120

wesbillman opened this issue Mar 21, 2024 · 2 comments
Labels
good first issue Good for newcomers

Comments

@wesbillman
Copy link
Member

No description provided.

@github-actions github-actions bot added the triage Issue needs triaging label Mar 21, 2024
@wesbillman wesbillman added the good first issue Good for newcomers label Apr 3, 2024
@alecthomas alecthomas removed the triage Issue needs triaging label Apr 8, 2024
@wesbillman
Copy link
Member Author

I see this in schema now

// This is the echo module.
module echo {
  config default String

  config secret String

  database postgres echo

  // An echo request.
  data EchoRequest {
    name String? +alias json "name"
  }

  data EchoResponse {
    message String +alias json "message"
  }

  // Echo returns a greeting with the current time.
  verb echo(echo.EchoRequest) echo.EchoResponse
    +calls time.time
}

@worstell
Copy link
Contributor

fixed with #1320

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

3 participants