Merge pull request #91 from negz/helpy-helpington

Rename pkg/helpers to pkg/convert
This commit is contained in:
Nic Cope 2025-04-22 13:19:39 -07:00 committed by GitHub
commit 01c86c11b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 3 deletions

View File

@ -14,8 +14,8 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Package helpers contains utilities for working with pointers.
package helpers
// Package convert contains utilities for converting to and from pointers.
package convert
import (
"strconv"

View File

@ -1,4 +1,20 @@
package helpers
/*
Copyright 2025 The Crossplane Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package convert
import (
"testing"