Skip to content

Renamed InstanceOptions to just Options#4

Merged
fahad19 merged 2 commits intomainfrom
instance-options
Aug 18, 2025
Merged

Renamed InstanceOptions to just Options#4
fahad19 merged 2 commits intomainfrom
instance-options

Conversation

@fahad19
Copy link
Member

@fahad19 fahad19 commented Aug 18, 2025

What's done

  • Renamed InstanceOptions to just Options

Comparison

Before

package main

import (
    "github.com/featurevisor/featurevisor-go"
)

func main() {
    f := featurevisor.CreateInstance(featurevisor.InstanceOptions{
        Datafile: featurevisor.DatafileContent.FromJSON("{ ... }"),
    })
}

After

package main

import (
    "github.com/featurevisor/featurevisor-go"
)

func main() {
    f := featurevisor.CreateInstance(featurevisor.Options{
        Datafile: featurevisor.DatafileContent.FromJSON("{ ... }"),
    })
}

@fahad19 fahad19 self-assigned this Aug 18, 2025
@fahad19 fahad19 merged commit d519fcd into main Aug 18, 2025
1 check passed
@fahad19 fahad19 deleted the instance-options branch August 18, 2025 13:52
@fahad19 fahad19 changed the title Renamed InstaceOptions to just Options Renamed InstanceOptions to just Options Aug 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments