zhangmeng
2019-08-26 3bd1f29975c0eaa6af8c99776b099faafbbfc250
提交 | 用户 | age
3bd1f2 1 // Copyright 2016 Tom Thorogood. All rights reserved.
Z 2 // Use of this source code is governed by a
3 // Modified BSD License license that can be found in
4 // the LICENSE file.
5
6 package net
7
8 type addr string
9
10 func (addr) Network() string {
11     return "shm"
12 }
13
14 func (a addr) String() string {
15     return string(a)
16 }