Code Review
/
ric-plt
/
e2mgr.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
[RICPLT-2523] Add SelectE2TInstance mechanism | Change Setup flow | Refactor code...
[ric-plt/e2mgr.git]
/
E2Manager
/
utils
/
time_utils.go
1
package utils
2
3
import "time"
4
5
func ElapsedTime(startTime time.Time) float64 {
6
return float64(time.Since(startTime)) / float64(time.Millisecond)
7
}