From 40a7851e4521f91221e52aa9d991524cf12e17ed Mon Sep 17 00:00:00 2001 From: Anatoly Prohacky Date: Sat, 30 Jul 2022 18:59:18 +1000 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20rbac?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 35 +++++++++++++++++++++++------------ go.mod | 3 +++ rbac.go => rbac/rbac.go | 0 3 files changed, 26 insertions(+), 12 deletions(-) create mode 100644 go.mod rename rbac.go => rbac/rbac.go (100%) diff --git a/.gitignore b/.gitignore index d74f20f..ccfde3b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,28 @@ -# ---> Actionscript -# Build and Release Folders -bin/ -bin-debug/ -bin-release/ +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets -# Other files and folders -.settings/ +# Local History for Visual Studio Code +.history/ -# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` -# should NOT be excluded as they contain compiler settings and other important -# information for Eclipse / Flash Builder. +# Built Visual Studio Code Extensions +*.vsix -# ---> VisualStudioCode -.settings +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +# Test binary, built with `go test -c` +*.test +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b8bcba2 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitstore.ru/tolikproh/policy + +go 1.18 diff --git a/rbac.go b/rbac/rbac.go similarity index 100% rename from rbac.go rename to rbac/rbac.go