16 lines
275 B
Go
16 lines
275 B
Go
package main
|
|
|
|
import "fable/services/internal/service"
|
|
|
|
func main() {
|
|
service.MustRun(service.Config{
|
|
Name: "Fable Comment Service",
|
|
Domain: "comment",
|
|
DefaultPort: "8088",
|
|
Capabilities: []string{
|
|
"comments",
|
|
"comment-moderation-hooks",
|
|
},
|
|
})
|
|
}
|