提交 | 用户 | 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 | } |