mirror of
https://github.com/coalaura/ffwebp.git
synced 2025-07-18 06:14:34 +00:00
logging and improvements
This commit is contained in:
8
internal/builtins/bmp.go
Normal file
8
internal/builtins/bmp.go
Normal file
@ -0,0 +1,8 @@
|
||||
//go:build bmp || full
|
||||
// +build bmp full
|
||||
|
||||
package builtins
|
||||
|
||||
import (
|
||||
_ "github.com/coalaura/ffwebp/internal/codec/bmp"
|
||||
)
|
3
internal/builtins/builtins.go
Normal file
3
internal/builtins/builtins.go
Normal file
@ -0,0 +1,3 @@
|
||||
package builtins
|
||||
|
||||
// does nothing :)
|
8
internal/builtins/gif.go
Normal file
8
internal/builtins/gif.go
Normal file
@ -0,0 +1,8 @@
|
||||
//go:build gif || core || full
|
||||
// +build gif core full
|
||||
|
||||
package builtins
|
||||
|
||||
import (
|
||||
_ "github.com/coalaura/ffwebp/internal/codec/gif"
|
||||
)
|
8
internal/builtins/jpeg.go
Normal file
8
internal/builtins/jpeg.go
Normal file
@ -0,0 +1,8 @@
|
||||
//go:build jpeg || core || full
|
||||
// +build jpeg core full
|
||||
|
||||
package builtins
|
||||
|
||||
import (
|
||||
_ "github.com/coalaura/ffwebp/internal/codec/jpeg"
|
||||
)
|
8
internal/builtins/png.go
Normal file
8
internal/builtins/png.go
Normal file
@ -0,0 +1,8 @@
|
||||
//go:build png || core || full
|
||||
// +build png core full
|
||||
|
||||
package builtins
|
||||
|
||||
import (
|
||||
_ "github.com/coalaura/ffwebp/internal/codec/png"
|
||||
)
|
8
internal/builtins/tiff.go
Normal file
8
internal/builtins/tiff.go
Normal file
@ -0,0 +1,8 @@
|
||||
//go:build tiff || full
|
||||
// +build tiff full
|
||||
|
||||
package builtins
|
||||
|
||||
import (
|
||||
_ "github.com/coalaura/ffwebp/internal/codec/tiff"
|
||||
)
|
Reference in New Issue
Block a user