add ssh key value for signup

This commit is contained in:
Arya Kiran
2023-01-17 20:36:47 +05:30
parent d1c36f7af4
commit ad85946120
2 changed files with 18 additions and 9 deletions

View File

@@ -1,7 +1,6 @@
package main
import (
"fmt"
"github.com/ProjectSegfault/publapi/pages"
"github.com/gofiber/fiber/v2"
log "github.com/sirupsen/logrus"
@@ -81,7 +80,6 @@ func userdata(username string) Userinfo {
user.desc = confparse(username, "desc")
user.email = confparse(username, "email")
user.loc = confparse(username, "loc")
//fmt.Println(user)
return user
}