mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
6 lines
135 B
Go
6 lines
135 B
Go
package services
|
|
|
|
func AuthenticateUser(username, password string) bool {
|
|
return (username == "testuser" && password == "testpass")
|
|
}
|