Add rate-skip command

This commit is contained in:
Dan Jones 2023-10-17 16:56:24 -05:00
commit cb655d29f5
3 changed files with 46 additions and 0 deletions

View file

@ -20,3 +20,17 @@ func CloseConn() error {
}
return conn.Close()
}
func Next() error {
if connerror != nil {
return connerror
}
return conn.Next()
}
func Previous() error {
if connerror != nil {
return connerror
}
return conn.Previous()
}