mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-22 15:25:19 +00:00
remove m3o references (#256)
* remove m3o references * fix notes * remove cruft
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const goIndexTemplate = `package m3o
|
const goIndexTemplate = `package services
|
||||||
|
|
||||||
import(
|
import(
|
||||||
{{ range $service := .services }}"github.com/micro/services/clients/go/{{ $service.Name}}"
|
{{ range $service := .services }}"github.com/micro/services/clients/go/{{ $service.Name}}"
|
||||||
@@ -25,7 +25,7 @@ type Client struct {
|
|||||||
const goServiceTemplate = `{{ $service := .service }}package {{ $service.Name }}
|
const goServiceTemplate = `{{ $service := .service }}package {{ $service.Name }}
|
||||||
|
|
||||||
import(
|
import(
|
||||||
"github.com/m3o/m3o-go/client"
|
"github.com/micro/micro-go/client"
|
||||||
)
|
)
|
||||||
|
|
||||||
func New{{ title $service.Name }}Service(token string) *{{ title $service.Name }}Service {
|
func New{{ title $service.Name }}Service(token string) *{{ title $service.Name }}Service {
|
||||||
@@ -72,7 +72,7 @@ import(
|
|||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
const curlExampleTemplate = `{{ $service := .service }}curl "https://api.m3o.com/v1/{{ $service.Name }}/{{ title .endpoint }}" \
|
const curlExampleTemplate = `{{ $service := .service }}curl "http://localhost:8080/{{ $service.Name }}/{{ title .endpoint }}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
||||||
-d '{{ tsExampleRequest $service.Name .endpoint $service.Spec.Components.Schemas .example.Request }}'`
|
-d '{{ tsExampleRequest $service.Name .endpoint $service.Spec.Components.Schemas .example.Request }}'`
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
curl "https://api.m3o.com/v1/stream/Publish" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
|
||||||
-d '{
|
|
||||||
"message": {
|
|
||||||
"id": "1",
|
|
||||||
"type": "signup",
|
|
||||||
"user": "john"
|
|
||||||
},
|
|
||||||
"topic": "events"
|
|
||||||
}'
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
package example
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/micro/services/clients/go/stream"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Publish a message to the stream. Specify a topic to group messages for a specific topic.
|
|
||||||
func PublishAmessage() {
|
|
||||||
streamService := stream.NewStreamService(os.Getenv("MICRO_API_TOKEN"))
|
|
||||||
rsp, err := streamService.Publish(&stream.PublishRequest{
|
|
||||||
Message: map[string]interface{}{
|
|
||||||
"id": "1",
|
|
||||||
"type": "signup",
|
|
||||||
"user": "john",
|
|
||||||
},
|
|
||||||
Topic: "events",
|
|
||||||
})
|
|
||||||
fmt.Println(rsp, err)
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
const { StreamService } = require("m3o/stream");
|
|
||||||
|
|
||||||
// Publish a message to the stream. Specify a topic to group messages for a specific topic.
|
|
||||||
async function publishAmessage() {
|
|
||||||
let streamService = new StreamService(process.env.MICRO_API_TOKEN);
|
|
||||||
let rsp = await streamService.publish({
|
|
||||||
message: {
|
|
||||||
id: "1",
|
|
||||||
type: "signup",
|
|
||||||
user: "john",
|
|
||||||
},
|
|
||||||
topic: "events",
|
|
||||||
});
|
|
||||||
console.log(rsp);
|
|
||||||
}
|
|
||||||
|
|
||||||
publishAmessage();
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
curl "https://api.m3o.com/v1/stream/Subscribe" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
|
||||||
-d '{
|
|
||||||
"topic": "events"
|
|
||||||
}'
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package example
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/micro/services/clients/go/stream"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Subscribe to messages for a given topic.
|
|
||||||
func SubscribeToAtopic() {
|
|
||||||
streamService := stream.NewStreamService(os.Getenv("MICRO_API_TOKEN"))
|
|
||||||
rsp, err := streamService.Subscribe(&stream.SubscribeRequest{
|
|
||||||
Topic: "events",
|
|
||||||
})
|
|
||||||
fmt.Println(rsp, err)
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
const { StreamService } = require("m3o/stream");
|
|
||||||
|
|
||||||
// Subscribe to messages for a given topic.
|
|
||||||
async function subscribeToAtopic() {
|
|
||||||
let streamService = new StreamService(process.env.MICRO_API_TOKEN);
|
|
||||||
let rsp = await streamService.subscribe({
|
|
||||||
topic: "events",
|
|
||||||
});
|
|
||||||
console.log(rsp);
|
|
||||||
}
|
|
||||||
|
|
||||||
subscribeToAtopic();
|
|
||||||
@@ -10,22 +10,22 @@ import (
|
|||||||
"github.com/micro/micro/v3/service/client"
|
"github.com/micro/micro/v3/service/client"
|
||||||
"github.com/micro/micro/v3/service/errors"
|
"github.com/micro/micro/v3/service/errors"
|
||||||
"github.com/micro/micro/v3/service/store"
|
"github.com/micro/micro/v3/service/store"
|
||||||
|
streamPb "github.com/micro/services/mq/proto"
|
||||||
pb "github.com/micro/services/notes/proto"
|
pb "github.com/micro/services/notes/proto"
|
||||||
"github.com/micro/services/pkg/tenant"
|
"github.com/micro/services/pkg/tenant"
|
||||||
streamPb "github.com/micro/services/stream/proto"
|
|
||||||
"google.golang.org/protobuf/types/known/structpb"
|
"google.golang.org/protobuf/types/known/structpb"
|
||||||
)
|
)
|
||||||
|
|
||||||
// New returns an initialized Notes
|
// New returns an initialized Notes
|
||||||
func New(c client.Client) *Notes {
|
func New(c client.Client) *Notes {
|
||||||
return &Notes{
|
return &Notes{
|
||||||
Stream: streamPb.NewStreamService("stream", c),
|
Stream: streamPb.NewMqService("mq", c),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Notes implements the notes proto definition
|
// Notes implements the notes proto definition
|
||||||
type Notes struct {
|
type Notes struct {
|
||||||
Stream streamPb.StreamService
|
Stream streamPb.MqService
|
||||||
}
|
}
|
||||||
|
|
||||||
func newMessage(ev map[string]interface{}) *structpb.Struct {
|
func newMessage(ev map[string]interface{}) *structpb.Struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user