Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
aacebo committed Nov 21, 2024
1 parent dac8c8f commit 47b2930
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
17 changes: 0 additions & 17 deletions sqlx/raw.go

This file was deleted.

4 changes: 4 additions & 0 deletions sqlx/sqlizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ type Sql struct {
Value any
}

func Raw(value string) *Sql {
return &Sql{value}
}

func (self Sql) Sql() string {
switch v := self.Value.(type) {
case string:
Expand Down

0 comments on commit 47b2930

Please sign in to comment.