Move to i_s / p_s and add user info (not quite complete)
[pstop.git] / performance_schema / relative_time.go
diff --git a/performance_schema/relative_time.go b/performance_schema/relative_time.go
deleted file mode 100644 (file)
index d831e6a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package performance_schema
-
-import (
-       "time"
-)
-
-type InitialTime struct {
-       initial_time time.Time
-}
-
-func (t *InitialTime) SetNow() {
-       t.initial_time = time.Now()
-}
-
-func (t InitialTime) Last() time.Time {
-       return t.initial_time
-}