implements.

type keyword followed by the interface name and the interface keyword. Inside the curly braces, list the method signatures that any implementing type must provide. For example, consider the following interface:
getRateOfInterestreturns the interest rate as afloat64value.calcReturnreturns the calculated return as afloat64value.
Implicit Implementation of Interfaces
Go’s interface implementation is implicit. This means that a type automatically implements an interface if it provides all the methods declared in the interface with matching signatures. For instance, if you have a struct that defines methods corresponding to those in theFixedDeposit interface, it implements that interface without any additional syntax requirements.
Golang’s design philosophy with interfaces leads to cleaner and more flexible code, as the relationship between types and interfaces is established solely based on method signatures.

Interfaces allow for modular and decoupled code design in Go. By relying solely on method signatures, types can implement interfaces implicitly, leading to cleaner and more straightforward code.