Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
imageshare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
imageshare
Commits
4269dcad
Commit
4269dcad
authored
1 month ago
by
Jonas Leder
Browse files
Options
Downloads
Patches
Plain Diff
remove unused helper package
parent
9b28ec5b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#54527
passed
1 month ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
helper/main.go
+0
-16
0 additions, 16 deletions
helper/main.go
with
0 additions
and
16 deletions
helper/main.go
deleted
100644 → 0
+
0
−
16
View file @
9b28ec5b
package
helper
import
(
"math/rand"
)
func
GenerateRandomString
(
length
int
)
string
{
const
charset
=
"abcdefghijklmnopqrstuvwxyz0123456789"
// Generate random string
result
:=
make
([]
byte
,
length
)
for
i
:=
range
result
{
result
[
i
]
=
charset
[
rand
.
Intn
(
len
(
charset
))]
}
return
string
(
result
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment