This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NOTE : This rescript file is a a binding to the nhost-js-sdk library, | |
// which is a way to communicate with https://github.com/nhost/hasura-backend-plus or services at nhost.io | |
// see the end of the file for a usage example | |
// initialization ------------------------------------------------------------- | |
// placeholder type | |
type nhost_t | |
// we import the nhost-js-sdk module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"runtime" | |
"sync" | |
"time" | |
"github.com/AsynkronIT/protoactor-go/actor" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"net/http" | |
"github.com/emicklei/go-restful" | |
restfulspec "github.com/emicklei/go-restful-openapi" | |
"github.com/go-openapi/spec" | |
) |