-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[merge] pull request #39 from akrck02/feature-native-http
Feature native http
- Loading branch information
Showing
8 changed files
with
157 additions
and
157 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
package roledal | ||
|
||
import ( | ||
apimodels "github.com/akrck02/valhalla-core-sdk/models/api" | ||
rolemodels "github.com/akrck02/valhalla-core-sdk/models/role" | ||
systemmodels "github.com/akrck02/valhalla-core-sdk/models/system" | ||
) | ||
|
||
func CreateRole(user rolemodels.Role) *systemmodels.Error { | ||
func CreateRole(user rolemodels.Role) *apimodels.Error { | ||
|
||
return nil | ||
} | ||
|
||
func DeleteRole(user rolemodels.Role) *systemmodels.Error { | ||
func DeleteRole(user rolemodels.Role) *apimodels.Error { | ||
|
||
return nil | ||
} | ||
|
||
func UpdateRole(user rolemodels.Role) *systemmodels.Error { | ||
func UpdateRole(user rolemodels.Role) *apimodels.Error { | ||
|
||
return nil | ||
} | ||
|
||
func GetRole(user rolemodels.Role) *systemmodels.Error { | ||
func GetRole(user rolemodels.Role) *apimodels.Error { | ||
|
||
return nil | ||
} |
Oops, something went wrong.