refactor(storage): remove useless convert

This commit is contained in:
iyear 2022-09-06 23:57:44 +08:00
parent 37aa4421dd
commit 7ab0e1b3e2

View file

@ -28,7 +28,7 @@ func (s *Session) LoadSession(_ context.Context) ([]byte, error) {
}
return nil, err
}
return []byte(b), nil
return b, nil
}
func (s *Session) StoreSession(_ context.Context, data []byte) error {