File: socket_windows.go

package info (click to toggle)
golang-github-smallstep-crypto 0.75.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,876 kB
  • sloc: sh: 66; makefile: 50
file content (11 lines) | stat: -rw-r--r-- 140 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
//go:build windows

package socket

import (
	"io"
)

func newSocket(_ string) (io.ReadWriteCloser, error) {
	return nil, ErrNotSupported
}