github.com/code-to-go/safepool.lib@v0.0.0-20221205180519-ee25e63c226e/main.go (about)

     1  package main
     2  
     3  import (
     4  	_ "embed"
     5  	"fmt"
     6  
     7  	"github.com/code-to-go/safepool.lib/api"
     8  )
     9  
    10  func main() {
    11  	api.Start()
    12  	fmt.Print("This is just a library! ")
    13  
    14  }