github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/os/os_windows.go (about)

     1  //go:build windows
     2  
     3  /* For license and copyright information please see LEGAL file in repository */
     4  
     5  package os
     6  
     7  import (
     8  	"../protocol"
     9  	"./windows"
    10  )
    11  
    12  func init() {
    13  	protocol.OS = &windows.OS
    14  }