rename: logparser v5 -> v6

This commit is contained in:
Inanc Gumus
2019-08-28 22:52:28 +03:00
parent de97595895
commit 10140e976d
20 changed files with 20 additions and 20 deletions

View File

@ -1,19 +0,0 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package pipe
// Record provides a generic interface for any sort of records.
type Record interface {
Str(field string) string
Int(field string) int
}
// Summer provides a method for summing the numeric fields.
type Summer interface {
Sum(Record) Record
}