-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathek.go
28 lines (22 loc) · 967 Bytes
/
ek.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//go:build !windows
// +build !windows
// Package ek is a set of auxiliary packages
package ek
// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2025 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //
import (
"golang.org/x/crypto/bcrypt"
"github.com/essentialkaos/depsy"
"github.com/essentialkaos/go-linenoise/v3"
)
// ////////////////////////////////////////////////////////////////////////////////// //
// worthless is used as dependency fix
func worthless() {
linenoise.Clear()
depsy.Extract(nil, false)
bcrypt.Cost(nil)
}