Files
Atay-Makhzan/modules/user/user.go
T

19 lines
344 B
Go
Raw Normal View History

2015-07-31 08:50:11 +02:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package user
import (
"os"
2015-07-31 08:50:11 +02:00
)
func CurrentUsername() string {
curUserName := os.Getenv("USER")
if len(curUserName) > 0 {
return curUserName
}
return os.Getenv("USERNAME")
}