Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 864 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 864 Bytes

Prisma Client with Go

Special thanks to Luca Steeb, for developing an elegant package.

This package is dedicated to Goravel as an extend package.

Version

hosseinmirzapur/prisma goravel/framework
v1.1.x v1.13.x

Install

  1. Add package:
go get github.com/hosseinmirzapur/prisma
  1. Register Service Provider:
// config/app.go
import "github.com/hosseinmirzapur/prisma"

"providers": []foundation.ServiceProvider{
    ...
    &prisma.ServiceProvider{},
}
  1. See artisan list
go run . artisan list
go run . artisan prisma:version

Info on Commands

Be sure to check Prisma Client with Go, as there are more information there as well.