Add support for PAM authentication

This commit is contained in:
Bolke de Bruin
2022-08-23 22:31:41 +02:00
parent 6499f9b7a5
commit 390f6acbcd
5 changed files with 94 additions and 3 deletions

14
cmd/auth/proto/auth.proto Normal file
View File

@@ -0,0 +1,14 @@
syntax = "proto3";
package main;
option go_package = "./auth;main";
message UserPass {
string username = 1;
string password = 2;
}
message Response {
string status = 1;
}