github.com/goravel/framework@v1.13.9/facades/auth.go (about)

     1  package facades
     2  
     3  import (
     4  	"github.com/goravel/framework/contracts/auth"
     5  	"github.com/goravel/framework/contracts/auth/access"
     6  )
     7  
     8  func Auth() auth.Auth {
     9  	return App().MakeAuth()
    10  }
    11  
    12  func Gate() access.Gate {
    13  	return App().MakeGate()
    14  }