1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-31 22:45:39 -05:00

logger service

This commit is contained in:
Darien Raymond
2018-02-14 17:35:09 +01:00
parent 1e0b35f869
commit c48fa50ab1
9 changed files with 313 additions and 17 deletions

View File

@@ -21,3 +21,9 @@ type Runnable interface {
Closable
}
// HasType is the interface for objects that knows its type.
type HasType interface {
// Type returns the type of the object.
Type() interface{}
}