pkg.re/essentialkaos/ek.10@v12.41.0+incompatible/ek_windows.go (about)

     1  package ek
     2  
     3  // ////////////////////////////////////////////////////////////////////////////////// //
     4  //                                                                                    //
     5  //                         Copyright (c) 2022 ESSENTIAL KAOS                          //
     6  //      Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0>     //
     7  //                                                                                    //
     8  // ////////////////////////////////////////////////////////////////////////////////// //
     9  
    10  import (
    11  	"golang.org/x/crypto/bcrypt"
    12  )
    13  
    14  // ////////////////////////////////////////////////////////////////////////////////// //
    15  
    16  // VERSION is current ek package version
    17  const VERSION = "0.0.0"
    18  
    19  // ////////////////////////////////////////////////////////////////////////////////// //
    20  
    21  // worthless is used as dependency fix
    22  func worthless() {
    23  	bcrypt.Cost(nil)
    24  }