refactor: move session package to internal
Tests / Run Tests (pull_request) Successful in 2m4s

This commit is contained in:
2026-03-30 11:37:59 +07:00
parent 7ecc56aa3c
commit ae71b46482
22 changed files with 28 additions and 28 deletions
+24
View File
@@ -0,0 +1,24 @@
package slug
type Slug interface {
String() string
Set(slug string)
}
type slug struct {
slug string
}
func New() Slug {
return &slug{
slug: "",
}
}
func (s *slug) String() string {
return s.slug
}
func (s *slug) Set(slug string) {
s.slug = slug
}