encore-go-service

Installation
SKILL.md

Encore Go Service Structure

Instructions

In Encore Go, each package with an API endpoint is automatically a service. No special configuration needed.

Creating a Service

Simply create a package with at least one //encore:api endpoint:

// user/user.go
package user

import "context"

type User struct {
    ID    string `json:"id"`
    Email string `json:"email"`
Related skills
Installs
212
GitHub Stars
23
First Seen
Jan 21, 2026